Xpath 与项目匹配

发布于 2024-10-19 12:20:14 字数 91 浏览 2 评论 0原文

matches 函数针对字符串起作用(其中结果是字符串类型的单个项目)。正在寻找一种使用 XPath 进行相同正则表达式匹配但针对项目的方法(结果是节点/项目的序列)?

The matches function acts against a string (where the result is a single item of type string). Looking for a way with XPath to do the same regular expression matches but against items (result is a sequence of nodes/items)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滥情空心 2024-10-26 12:20:14
//foo/bar[matches( ., 'regexp' )]

这是你要找的还是我误解了你的问题。这会根据每个节点的字符串值过滤 //foo/bar 节点列表。 (元素的字符串值是其中所有文本节点的串联。)

//foo/bar[matches( ., 'regexp' )]

Is this what you're looking for or am I misunderstanding your question. This filters the //foo/bar nodelist based on the string value of every node. (The string value of elements is the concatenation of all the text nodes within it.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文