Re: [xsl] repetition

Subject: Re: [xsl] repetition
From: abbouh <abbouh@xxxxxxxxxxxxxxxxx>
Date: Wed, 28 May 2003 14:38:53 +0000
OK,
thanks

Onur Esnaf a écrit :

> 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


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


Current Thread