一起选择 XML 节点将所有子节点
我想从已加载的 XML 文档中选择一个节点及其所有子节点。我应该使用什么方法来获取,例如下面的
和所有子节点(子节点 2.1,2.2,2.3)?
<xmldoc>
<item1>
<child1.1>
<child1.2>
<child1.3>
</item1>
<item2>
<child2.1>
<child2.2>
<child2.3>
</item2>
</xmldoc>
I want to select a node together with all child nodes from an XML document that I have loaded. What method whould I use to get, for example below, <item2>
and all child nodes (child 2.1,2.2,2.3)?
<xmldoc>
<item1>
<child1.1>
<child1.2>
<child1.3>
</item1>
<item2>
<child2.1>
<child2.2>
<child2.3>
</item2>
</xmldoc>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您需要(如问题中所述)选择
item2
及其所有子节点,XPath 表达式将为如果您需要所有后代 (例如对于更复杂的结构)
Assuming you need (as mentioned in question) to select
item2
and all its child nodes, XPath expression will beAnd if you need all descendants (e.g. for more complicated structure)
xpath 表达式应为 /xmldoc/item2/*
否则你应该指定用什么语言......
The xpath expression should be /xmldoc/item2/*
Otherwise you should specify in what language...