从XPath结果JCR中排除类型

时间:2014-02-24 14:43:55

标签: xpath jcr

我有以下XPath查询:

//element(*, hippo:harddocument)[jcr:contains(., 'jasper')]

我想要做的是从结果集中排除hand:iris类型的所有节点。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

以下查询应该是:
"//element(*, hippo:harddocument)[jcr:contains(., 'jasper') and not(@jcr:primaryType = 'hand:iris'))]"

BR。