对先前 XPath exp 的结果使用 XPath exp(Matt Gallagher 函数)
我正在使用 Matt Gallagher 函数使用 XPath 解析格式不正确的 html。
是否可以对先前 XPath 查询的结果使用 XPath 查询?
我首先选择与 p、h1-h6、ol、li 标签对应的所有节点,然后对它们使用 //text() XPath 表达式。
I'm using the Matt Gallagher functions to parse a not well-formed html using XPath.
Is it possible to use an XPath query on the result of a previous XPath query?
I would first select all the nodes corresponding to p, h1-h6, ol, li tags and then use on them the //text() XPath expression.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是。
XPath
/
运算符(和 (//
伪运算符)可以应用于任何节点集,这意味着在选择一个节点的任何 XPath 表达式的末尾节点集。Yes.
The XPath
/
operator (and the (//
pseudo-operator) can be applied to any node-set, and this means at the end of any XPath expression that selects a set of nodes.