如何选择包含@符号(at符号)的属性

发布于 2024-10-04 10:22:45 字数 255 浏览 3 评论 0原文

给定这个 xml:

<results>
    <result version="@2.15" url="some url"/>
    <result version="2.14" url="some url"/>
</results>

如何选择包含 version="@2.15" 的元素?我无法弄清楚如何将 @ 符号放入 XPath 中。

提前致谢, 埃里克

Given this xml:

<results>
    <result version="@2.15" url="some url"/>
    <result version="2.14" url="some url"/>
</results>

How do I select the element containing version="@2.15"? I have trouble figuring out how to put the @-sign in the XPath.

Thanks in advance,
Erik

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

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

发布评论

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

评论(2

行雁书 2024-10-11 10:22:45

此 XPath 选择所需的 result 元素:

/results/result[@version='@2.15']

注意:无需“转义”文字 @

This XPath selects the desired result element:

/results/result[@version='@2.15']

Note: There is no need to "escape" a literal @.

无所谓啦 2024-10-11 10:22:45

如何选择包含的元素
版本=“@2.15”?我有麻烦了
弄清楚如何输入@符号
XPath。

在 XPath 中这很简单:任何字符串文字都必须用一对引号或撇号括起来。

因此:

@x 

指定名为 x 的属性,

但是:

'@x'

只是一个字符串文字,包含字符 '@''x'

解决方案

用途:

/*/*[@version='@2.15']

选择文档顶部元素的子元素并且具有 version 属性且值为字符串 "@2.15" 的每个元素

How do I select the element containing
version="@2.15"? I have trouble
figuring out how to put the @-sign in
the XPath.

In XPath this is straightforward: any string literal must be surrounded by a pair of quotes or apostrophes.

Thus:

@x 

specifies an attribute named x

but:

'@x'

is just a string literal, containing the characters '@' and 'x'

Solution:

Use:

/*/*[@version='@2.15']

This selects every element that is a child of the top element of the document and that has a version attribute with value the string "@2.15"

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