使用Xpath Not

时间:2011-05-24 16:38:47

标签: xpath

我在Xpath查询中生成以下内容:

<xforms:instance id="Instance">
      {//xforms:instance[@id="Instance"][ .= "Code" ]}
      <Code>blah</Code>
</xforms:instance>

因为它将返回实例块中标记为“Code”的位置。但是,我希望它返回其他所有内容,而不是“代码”

我尝试过各种变体,包括:

[ .not(="Code") ]}
[ .!= "Code" ]}

但这些似乎不起作用。我很感激你的帮助。

感谢。

1 个答案:

答案 0 :(得分:0)

你只想要文本节点吗?

/xforms:instance/text()