Use xPath to test for an absent/missing attribute
Use xPath to test for an absent/missing attribute
Lets say you have this for input
<?xml version="1.0" encoding="UTF-8"?>
<root>
<object good="foo" >aoeu</object>
<object >bar</object>
</root>
Is there a way to get the object without the good attribute?
In other words the opposite of this:
root/object[@good]
|