xsl-list
[Top] [All Lists]

Re: Counting level of nodes beneath current (in XPATH)

2005-01-11 06:09:01

  I would be happy if I, from a given node, could count how many levels of 
  Y-nodes where below the current. I do not know if that was the answer that 
  David Carlisle gave.

yes.

<xsl:variable name="n">
 <xsl:for-each select=".//Y">
   <xsl:sort select="count(ancestor::Y)" datatype="number"/>
   <xsl:if test="position()=last()">
     <xsl:value-of select="count(ancestor::Y)"/>
   </xsl:if>
 </xsl:for-each>
</xsl:variable>

<xsl:value-of select="count(ancestor::Y) - $n"/>

is I believe the number you seek.

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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--