xsl-list
[Top] [All Lists]

RE: repetition

2003-05-28 07:03:39
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(_at_)ra(_dot_)cit(_dot_)alcatel(_dot_)fr]
Sent: Tuesday, May 27, 2003 8:10 PM
To: XSL-List(_at_)lists(_dot_)mulberrytech(_dot_)com
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



<Prev in Thread] Current Thread [Next in Thread>