Subject: Re: XPATH: how to get position of child-elementTAG ? (order of elemenTAGs, not of element)
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 16 Aug 2005 12:05:01 +0100
|
> I would like to check, if the name of the second element of root is
> "youngestSon".
Note that the root of the tree is not the top level element (parent
here) but a root node (document) node that is the parent of that
element.
the XPath /parent/*[2][self::youngestSon] will return a non empty result just
in the case that the second element is a youngestSon element. (XPath has
no access to the tags in the document, so the subject line of this
thread is misleading)
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|