M
mlybarger
i'm trying to use xpath to find nodes that don't match any other nodes
(of a different type). here's an example xml:
<a>
<b>
<c>one</c>
<c>three</c>
<d>
<e>one</e>
<e>three</e>
<e>five</e>
</d>
</a>
what i want to find are all the e nodes that don't have a matching c
node (five in this case). any pointers would be most appreciated!
~thanks
(of a different type). here's an example xml:
<a>
<b>
<c>one</c>
<c>three</c>
<d>
<e>one</e>
<e>three</e>
<e>five</e>
</d>
</a>
what i want to find are all the e nodes that don't have a matching c
node (five in this case). any pointers would be most appreciated!
~thanks