我有以下XPath查询:
//element(*, hippo:harddocument)[jcr:contains(., 'jasper')]
我想要做的是从结果集中排除hand:iris
类型的所有节点。我怎么能这样做?
答案 0 :(得分:0)
以下查询应该是:
"//element(*, hippo:harddocument)[jcr:contains(., 'jasper') and not(@jcr:primaryType = 'hand:iris'))]"
BR。