Re: [xsl] count and write number of nodes

Subject: Re: [xsl] count and write number of nodes
From: abbouh <abbouh@xxxxxxxxxxxxxxxxx>
Date: Tue, 30 Dec 2003 15:01:05 +0000
<xsl:template match="registros">

<!--to show in order pagina nodes-->
<xsl:for-each select="./registro" />
   <xsl:number level="single" count="registro" format="1"/>
   <xsl:text>.-</xsl:text>
    <xsl:value-of select="./pagina" />
   <xsl:text>&#10;</xsl:text>
</xsl:for-each>

</xsl:template>


Hope this helps!

Cheers,


Dionisio Ruiz de Zarate a écrit :

> Hello i have this:
> <?xml version="1.0" encoding="UTF-8"?>
> <registros>
> <registro>
> <pagina>the page a</pagina>
> </registro>
> <registro>
> <pagina>the page b</pagina>
> </registro>
> <registro>
> <pagina>the page c</pagina>
> </registro>
> <registro>
> <pagina>the page d</pagina>
> </registro>
> <registro>
> <pagina>the page e</pagina>
> </registro>
> </registros>
>
> using xsl how can count the number of pagina nodes (5 in this example) and
> how can i put:
> 1.- the page node value (<xsl:value-of  select="pagina"/>
> 2.- the next page
> ......
>
> how can i count the nuber of pages and show in order 1, 2 , 3, 4, .....n
> pages
>
> Thanks
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread