xsl-list
[Top] [All Lists]

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

2018-10-18 16:30:57
On 18/10/18 20:21, kvsskishore kumar kvsskishorekumar(_at_)gmail(_dot_)com 
wrote:
Hi, 
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
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>