当属性不存在时,选择节点的Xpath查询?

时间:2008-12-12 14:45:13

标签: xpath attributes

我想选择不存在特定属性的节点。我尝试过Not()函数,但它不起作用。有办法吗?

实施例: 以下Xpath查询:

group/msg[not(@owner)]

应该检索第一个节点而不是第二个节点。但是,SketchPath(测试Xpath查询的工具)和我的C#代码都认为2个节点都可以。

<group>
    <msg id="EVENTDATA_CCFLOADED_XMLCONTEXT"  numericId="14026"  translate="False"  topicId="302"  status="translated" >
        <text>Context</text>
        <comment></comment>
    </msg>
    <msg id="EVENTDATA_CCFLOADED_XMLCONTEXT_HELP"  numericId="14027"  translate="False"  topicId="302"  status="translated"  owner="EVENTDATA_CCFLOADED_XMLCONTEXT" >
        <text>Provides the new data displayed in the Object.</text>
        <comment></comment>
    </msg>
</group>

实际上Not()函数正常工作,只是我有其他条件而且括号没有正确设置。 errare humanum est

2 个答案:

答案 0 :(得分:17)

在一些旧的且不是非常标准的XPath引擎中,出于同样的原因我不得不使用string-length(@attr)=0

答案 1 :(得分:1)

使用XPath Explorer(基于Jaxen库)进行测试时适合我 所以我猜这确实取决于XPath的实现。