vote up 2 vote down star
1

I haven't used XPath much nor read through tutorials.

Given this XML, what XPath returns the first three nodes:

<bla>
 <a prop="Foo1"/>
 <a prop="Foo2"/>
 <a prop="3Foo"/>
 <a prop="Bar"/>
</bla>
flag

62% accept rate
Why is everyone looking at the "prop" attribute? Did I miss something? It just says get the first three nodes. – hal10001 Sep 19 '08 at 16:28
Everyone is looking at the prop attribute because that's what was asked. Get all nodes where prop contains "Foo". Add <a prop="Foo5" /> and you will see why it isn't just "the first three nodes".. – erlando Sep 19 '08 at 16:34
The question in the body is poorly worded, regardless of the title. Can foo really be in any prop attribute, or do you seriously just want the first three nodes? – hal10001 Jul 8 at 16:17
Yes, refer to the title please (and feel free to edit). – ripper234 Jul 8 at 18:00

8 Answers

vote up 8 vote down check
//a[contains(@prop,'Foo')]

Works if I use this XML to get results back.

<bla>
 <a prop="Foo1">a</a>
 <a prop="Foo2">b</a>
 <a prop="3Foo">c</a>
 <a prop="Bar">a</a>
</bla>

This site is great for testing this kind of thing

http://www.xmlme.com/XpathTool.aspx

Edit: Another thing to note is that while the XPath above will return the correct answer for that particular xml, if you want to guarantee you only get the "a" elements in element "blah", you should as others have mentioned also use

/bla/a[contains(@prop,'Foo')]

This will search you all "a" elements in your entire xml document, regardless of being nested in a "blah" element

//a[contains(@prop,'Foo')]

I added this for the sake of thoroughness and in the spirit of stackoverflow. :)

link|flag
vote up 2 vote down
descendant-or-self::*[contains(@prop,'Foo')]

Or:

/bla/a[contains(@prop,'Foo')]

Or:

/bla/a[position() <= 3]

Dissected:

descendant-or-self::

The Axis - search through every node underneath and the node itself. It is often better to say this than //. I have encountered some implementations where // means anywhere (decendant or self of the root node). The other use the default axis.

* or /bla/a

The Tag - a wildcard match, and /bla/a is an absolute path.

[contains(@prop,'Foo')] or [position() <= 3]

The condition within [ ]. @prop is shorthand for attribute::prop, as attribute is another search axis. Alternatively you can select the first 3 by using the position() function.

link|flag
vote up -1 vote down

/bla[a<4]/a

http://www.w3schools.com/XPath/xpath_examples.asp

link|flag
You failed to note the title of the question. – Jeremy Stein Jul 7 at 18:11
vote up 2 vote down

John C is the closest, but XPath is case sensitive, so the correct XPath would be:

/bla/a[contains(@prop, 'Foo')]
link|flag
vote up 1 vote down

try this:

//a[contains(@prop,'foo')]

that should work for any "a" tags in the document

link|flag
vote up 1 vote down

For the code above... //*[contains(@prop,'foo')]

link|flag
this is for any element with foo in, but the attribute must be "prop" – digiguru Sep 19 '08 at 16:19
vote up 2 vote down

/bla/a[contains(@prop, "foo")]

link|flag
vote up 1 vote down

Have you tried something like:

//a[contains(@prop, "Foo")]

I've never used the contains function before but suspect that it should work as advertised...

link|flag
@toddk... you've targeted a non-existant attribute: @foo. You'd want to target @prop ;-) – Metro Smurf Sep 19 '08 at 16:21

Your Answer

Get an OpenID
or

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