Is it possible to create an XPath expression that matches all child nodes that are not of a certain name? E.g.
<a>
<b />
<c />
<d />
<e />
<f />
<g />
</a>
How would I select all children of the 'a' node that are not a 'b' node?
Is it possible to create an XPath expression that matches all child nodes that are not of a certain name? E.g.
<a>
<b />
<c />
<d />
<e />
<f />
<g />
</a>
How would I select all children of the 'a' node that are not a 'b' node?