XPath:如何检查属性是否存在?

发布于 2024-09-24 08:59:11 字数 308 浏览 1 评论 0原文

给定以下 XML,如何编写 XPath 查询来提取属性 foo 存在的节点?:

<node1>
  <node2>
    <node3 foo='bar'></node3>
    <node3></node3>
    <node3 bar='foo'></node3>
    <node3 foo='foobar'></node3>
  </node2>
</node1>

Given the following XML, how do I write an XPath query to pull nodes where the attribute foo exists?:

<node1>
  <node2>
    <node3 foo='bar'></node3>
    <node3></node3>
    <node3 bar='foo'></node3>
    <node3 foo='foobar'></node3>
  </node2>
</node1>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

忘年祭陌 2024-10-01 08:59:11

简短而甜蜜:

//*[@foo]

当然你应该使用更具体的表达方式。但是使用 [@attributeName] 您可以获得具有该属性的所有节点。

Short and sweet:

//*[@foo]

Of course you should use a more specific expression. But with [@attributeName] you get all nodes which have that attribute.

梦与时光遇 2024-10-01 08:59:11

使用以下 XPath 表达式

//*[boolean(@foo)]

Use the following XPath expression

//*[boolean(@foo)]
柠檬色的秋千 2024-10-01 08:59:11

如果您使用 xpath,这也许可以帮助您:

count(//*[@foo])

它将返回具有属性 foo 的节点/子节点的计数

If you use and xpath, this maybe can help you:

count(//*[@foo])

it will return count of node/child that have attribute foo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文