<a>
<b/>
<c/>
<d/>
<b/>
<e/>
</a>
How do I select those children of "a" that are not "b"?
<a>
<b/>
<c/>
<d/>
<b/>
<e/>
</a>
How do I select those children of "a" that are not "b"?
Xpath will look:
a/*[name(.) !='b']
So, select children of 'a' whose name is not equal 'b'