|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: How can I simulate a replicate-function in xsl: re
<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
|
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








