Re: [xsl] Display the count of nodes and its descendent nodes in xslt

Subject: Re: [xsl] Display the count of nodes and its descendent nodes in xslt
From: "Peter Flynn peter@xxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 18 Oct 2018 21:30:52 -0000
On 18/10/18 20:21, kvsskishore kumar kvsskishorekumar@xxxxxxxxx wrote:
> Hi,B 
> Im newbie and started learning xslt on my own, I came to a part where I
> have to show the node name along with their decsending nodes count under
> it. 

Without knowing more about your application, what you seem to be looking
for is (within a template, not shown):

...
  <xsl:value-of select="name()"/>
  <xsl:text> has </xsl:text>
  <xsl:value-of select="count(descendant::node())"/>
  <xsl:text> descendant nodes.</xsl:text>
...

///Peter

Current Thread