[Home] [By Thread] [By Date] [Recent Entries]
<xsl:template name="replicate">
<xsl:param name="string" select="'default'"/>
<xsl:param name="count" select="1"/>
<xsl:if test="count > 0">
<xsl:value-of select="$string"/>
<xsl:call-template name="replicate">
<xsl:with-param name="string" select="$string"/>
<xsl:with-param name="count" select="$count - 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>use it like the following: <xsl:template match="/">
<xsl:call-template name="replicate">
<xsl:with-param name="string" select="'abc'"/>
<xsl:with-param name="count" select="3"/>
</xsl:call-template>
</xsl:template>Regards, Joerg Rene de Vries wrote: Hi, -- System Development VIRBUS AG Fon +49(0)341-979-7411 Fax +49(0)341-979-7409 joerg.heinicke@xxxxxxxxx www.virbus.de XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



