gpt4 book ai didi

xpath:在文本后选择标签

转载 作者:行者123 更新时间:2023-12-03 16:11:39 27 4
gpt4 key购买 nike

如何通过 xpath 选择 strong标签后 baz例如文字?

<p>
<br>foo<strong>this foo</strong>

<br>bar<strong>this bar</strong>

<br>baz<strong>this baz</strong>

<br>qux<strong>this qux</strong></p>

显然以下不起作用......
//p[text() = 'baz']/following-sibling::select[1]

最佳答案

试试这个

//p/text()[. = 'baz']/following-sibling::strong[1]

演示在这里 - http://www.xpathtester.com/obj/b67bad4d-4d38-4e2d-a3df-b7e5a2e9f286

此解决方案不依赖于文本节点周围的空白。如果您开始使用缩进或其他空白字符,则需要切换到使用以下内容
//p/text()[normalize-space(.) = 'baz']/following-sibling::strong[1]

关于xpath:在文本后选择标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15127028/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com