用于查找条件与属性和子节点值匹配的元素的 xpath 查询

发布于 2024-11-02 06:01:37 字数 599 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

峩卟喜欢 2024-11-09 06:01:37

这个:

//Book[@size='2'][Title='xyz']

或者这个:

//Book[@size='2' and Title='xyz']

请注意,当您的架构已知时,不鼓励使用 //

This:

//Book[@size='2'][Title='xyz']

Or this:

//Book[@size='2' and Title='xyz']

Note that the use of // is discouraged when your schema is known.

尽揽少女心 2024-11-09 06:01:37

这有效吗?

//Book[@size='2']//Title[text() = "xyz"]/..

Does this work?

//Book[@size='2']//Title[text() = "xyz"]/..
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文