用于选择以特定值开头的节点的 XPath
给定 XML 结构,
<Doc>
<Other />
<Q1 />
<Q2 />
</Doc>
如何仅选择以“Q”开头的节点,例如 /Doc/Q1 和 /Doc/Q2?
看起来这可以通过 starts-with
来完成,但我只找到了将 starts-with
应用于节点值的示例
Given the XML structure
<Doc>
<Other />
<Q1 />
<Q2 />
</Doc>
How can I select only nodes that begin with a "Q", e.g. /Doc/Q1 and /Doc/Q2?
It seems like this can be done with starts-with
, but I have only found examples that apply starts-with
to the value of the node
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/Doc/*[starts-with(name(), 'Q')]
/Doc/*[starts-with(name(), 'Q')]