Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given this xml:

<results>
    <result version="@2.15" url="some url"/>
    <result version="2.14" url="some url"/>
</results>

How do I select the element containing version="@2.15"? I have trouble figuring out how to put the @-sign in the XPath.

Thanks in advance, Erik

share|improve this question
Good question, +1. See my answer for a detailed explanation then a solution. – Dimitre Novatchev Nov 23 '10 at 14:11

3 Answers

up vote 2 down vote accepted

This XPath selects the desired result element:

/results/result[@version='@2.15']

Note: There is no need to "escape" a literal @.

share|improve this answer
Thanks! It works fine now. – venerik Nov 23 '10 at 13:38
@venerik: You are wellcome. – user357812 Nov 23 '10 at 13:42

How do I select the element containing version="@2.15"? I have trouble figuring out how to put the @-sign in the XPath.

In XPath this is straightforward: any string literal must be surrounded by a pair of quotes or apostrophes.

Thus:

@x 

specifies an attribute named x

but:

'@x'

is just a string literal, containing the characters '@' and 'x'

Solution:

Use:

/*/*[@version='@2.15']

This selects every element that is a child of the top element of the document and that has a version attribute with value the string "@2.15"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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