11

Is it possible to get the total number of XML nodes?

Also, how does one do a for-statement with XSLT?

1 Answers1

25

If you want to count the node of you XML you could use count(object/node) and it will be something like this:

 <xsl:value-of select="count(/root/*)"/>

The instruction above will let you know how many child nodes does your root node has

<xsl:for-each select="/root/element-you-wanna-loop" >
    <!-- Do something with your nodes here -->    
</xsl:for-each>

Hope this helps you.

Cesar Hermosillo
  • 942
  • 7
  • 19