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

Re: counting loop in xslt

Subject: Re: counting loop in xslt
From: Antonio Fiol <fiol@xxxxxxxxxx>
Date: Tue, 28 May 2002 10:33:22 +0200
xsl counting loops
Pfitzner, Jan wrote:

for (int a; a <= number;;a++){}



Hello,


Once a variable is defined, you cannot change its value. However, you can use recursive template calls like (not tested, may well not work):

<xsl:variable name="number">10</xsl:variable>

<xsl:template name="loop">
<xsl:param name="a" select="0" />
<!-- Use your a -->
<xsl:value-of select="$a">
<!-- Test condition and call template if less than number -->
<xsl:if test="$a < $number">
<xsl:call-template name="loop">
<xsl:with-param name="a" value="{$a + 1}" />
</xsl:call-template>
</xsl:if>
</xsl:template>


I insist, this has not been tested.



Antonio



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.