用于查找条件与属性和子节点值匹配的元素的 xpath 查询
我有 2 个具有相同属性但具有不同子节点值的元素。我可以查询以查找与属性以及子节点值匹配的特定元素吗?具体来说,这是我用来查询的示例 xml(原始 xml 中的每个元素都有超过 10 个子节点)。
<Book size="2">
<Title>abc</Title>
<Price>10</Price>
</Book>
<Book size="2">
<Title>xyz</Title>
<Price>20</Price>
</Book>
<Book size="4">
<Title>Harry</Title>
<Price>10</Price>
</Book>
所以,现在我想找到具有 @size = "2"
和 Title = xyz
的 Book 元素。
使用 SelectSingleNode
方法可以实现这一点吗?如果不是怎么查询呢?
谢谢
I have 2 elements with same attribute but with different child node values. Can I query to find a specific element which matches the attribute and also the child node value. To be specific, this is the sample xml i am using to query(each element in original xml has more than 10 childe nodes).
<Book size="2">
<Title>abc</Title>
<Price>10</Price>
</Book>
<Book size="2">
<Title>xyz</Title>
<Price>20</Price>
</Book>
<Book size="4">
<Title>Harry</Title>
<Price>10</Price>
</Book>
So, now I want to find the Book element which has the @size = "2"
and Title = xyz
.
Is this possible by using SelectSingleNode
method? If not how to query this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个:
或者这个:
请注意,当您的架构已知时,不鼓励使用
//
。This:
Or this:
Note that the use of
//
is discouraged when your schema is known.这有效吗?
Does this work?