Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 XPath 中,我可以使用双斜杠来表示我想获取文档中的任何节点,不需要根节点的子节点,例如
//input
将代表我的 XML 文档中的任何<input>标记。
<input>
我如何用 GPath 表达式来表达它?
该表达式在 GPath 中 //被替换为。'**'
//
'**'
所以你的查询是:
'**'.input
在此处链接到 GPath 文档。