So I'm not sure if this is possible. But I want to scan over an XML document to find all elements which has a particular attribute value.
It doesn't matter what the element is or the attribute type is... I just need to find them based on attribute value.
e.g. I am looking for the word "duck"
<person name="Fred" thing="duck"/>
<person name="Mary"/>
<animal name="duck" thing="swims"/>
The first and third one should match, the second does not match.
Any ideas?
Many thanks.