Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<grand id="grand">
  <parent>
    <child age="18" id="#not-grand"/>
    <child age="20" id="#grand"/> <!-- This is what I want to locate -->
  </parent>
</grand>

Can anybody tell me how to express for locating the second child?

This doesn't work...

"/grand/parent/child[@id=concat('#',/grand/@id)]/@age"

Thank you.


I'm sorry. The expression is OK. I found I got some problems in other area not the expression itself.

share|improve this question
2  
Your xpath works fine for me. – dogbane May 19 '11 at 8:00
2  
Same for me - just tested it here and it selects the second child element. – Andreas_D May 19 '11 at 8:05
Right... The expression is OK. I'm sorry. I've made some mistakes in the expression(namespace prefix) and the instance document. Thank you. – Jin Kwon May 19 '11 at 8:33

closed as too localized by animuson, ChrisF Mar 16 at 21:01

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

This XPath is specific to the code snippet you've provided. To select <child> with id as #grand you can write //child[@id='#grand'].

To get age //child[@id='#grand']/@age

Hope this helps

share|improve this answer
Thank you Vaman. It helped. I meant referring the expression('/grand/@id') for one time evaluation not the value('#grand') which should be evaluated first. – Jin Kwon May 19 '11 at 8:43
1  
This should be the accepted answer as it is far easier to understand than the OP's solution. – Bashevis Mar 6 at 7:01

I think this is what you want:

/grand/parent/child[@id="#grand"]
share|improve this answer
Thank you MarcoS. I meant referring the expression('/grand/@id') for one time evaluation not the value('#grand') which should be evaluated first. – Jin Kwon May 19 '11 at 8:44
1  
@jin-kwon: I see. So, you're XPath is just fine. – MarcoS May 19 '11 at 8:49

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