up vote 11 down vote favorite
3
share [g+] share [fb]

Is there an xpath way to find a node that has a given attribute whose value contains a given string?

For example I have an xml document and want to find a node where the address attribute contains the string Downing, so that I could find the following node:

<person name="blair" address="10 Downing St. London"/>
link|improve this question

feedback

1 Answer

up vote 29 down vote accepted
select="//*[contains(@address,'Downing')]"
link|improve this answer
Tested with Notepad++ XML Tools, returns the node fine. Good job. – Stephen Friederichs Mar 5 '09 at 13:55
Remember to avoid the '//' if possible. :-) Good job though. – Jon W Mar 5 '09 at 14:00
@Jweede yeah, I know. But as the node wasn't specified, I assumed that he wants every node with that attribute. – vartec Mar 5 '09 at 15:07
1  
Been looking all over for a way to do "like" style searching for the value of an attribute. Thanks! – used2could Apr 26 '10 at 1:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.