Xpath 与项目匹配
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是你要找的还是我误解了你的问题。这会根据每个节点的字符串值过滤
//foo/bar
节点列表。 (元素的字符串值是其中所有文本节点的串联。)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.)