|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: repetition
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
|
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








