|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: counting loop in xslt
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








