vote up 3 vote down star

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"/>
flag

1 Answer

vote up 12 vote down check
select="//*[contains(@address,'Downing')]"
link|flag
Tested with Notepad++ XML Tools, returns the node fine. Good job. – Stephen Friederichs Mar 5 at 13:55
Remember to avoid the '//' if possible. :-) Good job though. – Jweede Mar 5 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 at 15:07

Your Answer

Get an OpenID
or

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