最佳答案
XML: /A/B
或 /A
我希望得到所有没有任何 B
子节点的 A
节点。
我试过了
/A[not(B)]
/A[not(exists(B))]
没有成功
如果可能的话,我更喜欢使用语法 /*[local-name()="A" and .... ]
的解决方案。有什么可行的办法吗?
Xml 看起来像:
<WhatEver>
<A>
<B></B>
</A>
</WhatEver>
或者
<WhatEver>
<A></A>
</WhatEver>