gpt4 book ai didi

html - 你能用ruby nokogiri使用通配符搜索html属性吗

转载 作者:太空宇宙 更新时间:2023-11-03 17:37:41 25 4
gpt4 key购买 nike

我知道您可以使用通配符在 html 中搜索文本。您可以使用带有 nokogiri 的通配符在 html 中搜索属性值吗

例如,假设我想搜索值为 *session* 的类

最佳答案

您可以使用 xpath contains() 函数来搜索文档。像这样的东西:

doc.xpath("//*[@*[contains(., 'session')]]").each do |ele|
# something
end

此搜索返回所有具有其值包含字符串“session”的属性的所有元素。

关于html - 你能用ruby nokogiri使用通配符搜索html属性吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11593489/

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