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

I need to retrieving the last matching element in xml using xpath. For Eg

<step >
 <step1 name="a">
    <calculation value="123.5">
 </step1>
 <step1 name="b">
    <calculation value="129.5">
 </step1>
<step1 name="a">
    <calculation value="124">
</step1>
<step1 name="c">
    <calculation value="130">
 </step1>
</step>

I want to retrieve the last matching value having name "a" which is 124 here.Can anyone please help.

share|improve this question
It's not a valid XML – sputnick Nov 19 '12 at 8:48
possible duplicate of XSLT getting last element – Stefan Nov 19 '12 at 8:54
What have you tried? – YaK Nov 19 '12 at 9:04

1 Answer

up vote 1 down vote accepted

As in Stefans link, use last():

 /step/step1[@name="a"][last()]/calculation/@value

if you have an xml parser that can handle the file

share|improve this answer
Thank you.It is working now. – kavin raj Nov 20 '12 at 3:25

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.