[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: count and write number of nodes

Subject: RE: count and write number of nodes
From: "Andreas L. Delmelle" <a_l.delmelle@xxxxxxxxxx>
Date: Tue, 30 Dec 2003 14:08:16 +0100
xsl count
> -----Original Message-----
> From: Dionisio Ruiz de Zarate
>
<snip />
>
> using xsl how can count the number of pagina nodes (5 in this example)

Hi,

Suppose you have a template for 'registros', then inside the template you
can count the number of pagina-nodes, like:

<xsl:template match="registros">
  <xsl:value-of select="count(./registro/pagina)" />
  <xsl:apply-templates select="./registro/pagina" />
</xsl:template>

> and how can i put:
> 1.- the page node value (<xsl:value-of  select="pagina"/>
> 2.- the next page

<xsl:template match="pagina">
  <xsl:value-of select="." />
</xsl:template>

>
> how can i count the nuber of pages and show in order 1, 2 , 3, 4, .....n
> pages
>

The above templates will normally suffice to give you an output like :

5
the page a
the page b
the page c
the page d
the page e


Hope this helps!

Cheers,

Andreas


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.