Let us have a xml tree of depth N. I have traveresd the last node means i am at last note. Now i wanted to go back to some level up (say at N-3) in the xml tree from that last node.

Please let me know the syntax for the XPATH query so that i can reached at intended node in the xml tree.

link|improve this question
Good question (+1). See my answer for two short XPath expressions. :) – Dimitre Novatchev Sep 9 '10 at 12:29
feedback

2 Answers

Use:

ancestor::node()[3]

or

../../..
link|improve this answer
1  
+1 for ancestor axe plus position predicate solution that can be parameterized – user357812 Sep 9 '10 at 13:06
feedback

Just like in file systems you can use .. to refer to the parent node. So the query ../../../ will refer to the node three levels up.

link|improve this answer
Thanks for the valuable input. – Santosh kumar Sep 9 '10 at 12:44
@musikk: except for the final /. – LarsH Sep 13 '10 at 16:54
feedback

Your Answer

 
or
required, but never shown

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