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
|