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 < $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: 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 |
- repetition
- abbouh - Tue, 27 May 2003 12:58:51 -0400 (EDT)
- <Possible follow-ups>
- Martinez, Brian - Tue, 27 May 2003 14:56:21 -0400 (EDT)
- Onur Esnaf - Wed, 28 May 2003 10:09:26 -0400 (EDT) <=
- abbouh - Wed, 28 May 2003 10:28:00 -0400 (EDT)
|
|