RE: [xsl] repetition

Subject: RE: [xsl] repetition
From: "Onur Esnaf" <oesnaf@xxxxxxxxxxxxxxx>
Date: Wed, 28 May 2003 17:03:39 +0300
Hi
You can use recursice template calls to perform such a task.
Use a code like below.


<xsl:variable name="n" select="20"/>
<xsl:template name="Iteration">
		
	<xsl:if test="$counter &lt; $n">
		<xsl:text>toto</xsl:text>
<!-- recursive call -->
		<xsl:call-template name="Iteration">
			<xsl:with-param name="counter" select="$counter+ 1"/>							
		</xsl:call-template>
	</xsl:if>
</xsl:template>


-----Original Message-----
From: abbouh [mailto:abbouh@xxxxxxxxxxxxxxxxx]
Sent: Tuesday, May 27, 2003 8:10 PM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] repetition


i want to know how i can repeat an instruction in xsl
for example i want to display text "toto" n time
whithout repeating
<xsl:text>toto</xsl:text>   n time.
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


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


Current Thread