XPath 运算符“!=”。它是如何运作的?

发布于 2024-10-10 18:19:04 字数 662 浏览 6 评论 0原文

XML 文档:

<doc>
    <A>   
        <Node>Hello!</Node>   
    </A> 

    <B>     
        <Node/>
    </B>  

    <C>
    </C>

    <D/>
</doc>

您将如何评估以下 XPath 查询?

/doc/A/Node != 'abcd'  
/doc/B/Node != 'abcd'  
/doc/C/Node != 'abcd'  
/doc/D/Node != 'abcd'  

我希望所有这些都评估为true

然而,结果如下:

/doc/A/Node != 'abcd'     true
/doc/B/Node != 'abcd'     true
/doc/C/Node != 'abcd'     false
/doc/D/Node != 'abcd'     false

这是预期的行为吗?或者是我的 XPath 提供程序 (jaxen) 的错误?

XML document:

<doc>
    <A>   
        <Node>Hello!</Node>   
    </A> 

    <B>     
        <Node/>
    </B>  

    <C>
    </C>

    <D/>
</doc>

How would you evaluate the following XPath queries?

/doc/A/Node != 'abcd'  
/doc/B/Node != 'abcd'  
/doc/C/Node != 'abcd'  
/doc/D/Node != 'abcd'  

I would expect ALL of these to evaluate to true.

However, here are the results:

/doc/A/Node != 'abcd'     true
/doc/B/Node != 'abcd'     true
/doc/C/Node != 'abcd'     false
/doc/D/Node != 'abcd'     false

Is this expected behavior? Or is it a bug with my XPath provider (jaxen)?

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

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

发布评论

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

评论(2

最近可好 2024-10-17 18:19:04

建议:当一个或两个参数都是节点集时,切勿使用 != 运算符来比较不等式。

根据定义表达式

$node-set != $value

$node-set 中至少有一个节点且其字符串值不等于 $value 的字符串值时,计算结果为 true()

使用此定义

$empty-nodeset != $value 

始终为 false(),因为 $empty-nodeset 中甚至没有一个节点满足不等式。

解决方案

使用

not($node-set = $value)

然后您将获得所需的所有结果true()

Recommendation: Never use the != operator to compare inequality where one or both arguments are node-sets.

By definition the expression:

$node-set != $value

evaluates to true() exactly when there is at least one node in $node-set such that its string value is not equal to the string value of $value.

Using this definition:

$empty-nodeset != $value 

is always false(), because there isn't even a single node in $empty-nodeset for which the inequality holds.

Solution:

Use:

not($node-set = $value)

Then you get all results true(), as wanted.

仅此而已 2024-10-17 18:19:04

来自 XPath 规范

如果要比较的一个对象是节点集,另一个是字符串,则当且仅当节点集中存在一个节点,使得在该节点集上执行比较的结果时,比较才为真。该节点的 string-value 和另一个字符串为 true。

这意味着如果节点集为空(如情况 C 和 D 所示),则布尔表达式的结果将为 false,因为没有可以应用不等式的节点。

您可以解决此行为并使用如下表达式获得您想要的结果:

count(/doc/C/Node) = 0 or /doc/C/Node != 'abcd'

From the XPath spec:

If one object to be compared is a node-set and the other is a string, then the comparison will be true if and only if there is a node in the node-set such that the result of performing the comparison on the string-value of the node and the other string is true.

This means that if the node-set is empty (as in your cases C and D), the result of the boolean expression will be false, since there is no node to which the inequality can apply.

You can work around this behaviour and get the result you want using an expression like:

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