gpt4 book ai didi

php简单的xpath问题

转载 作者:行者123 更新时间:2023-12-03 16:13:02 25 4
gpt4 key购买 nike

我有这个 div:

<div class="product-name">Product1</div>

我也有这个div:
<div class="product-name gold">Product2</div>

如何更改此 xpath 查询以获取 的任何 div包含 产品名称?而不是获得完全匹配。
/html/body//div[@class='product-name']

我用谷歌搜索,但我只能找到如何使用 contains在节点内搜索值而不是属性时。

编辑
enter image description here

最佳答案

您可以使用 contains() :

/html/body//div[contains(@class, 'product-name')]

更新:

@Alejandro在他的评论中指出,这也将匹配任何包含 product-name 的类。 . See his answer for a XPath 1.0 solution .

如果您使用 XPath 2.0,您也可以这样做:
/html/body//div[exists(index-of(tokenize(@class, "\s+"), "product-name"))]

关于php简单的xpath问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5304791/

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