Hi,
Use call-template for recursive and the below sample code may be
fulfill your requirement.
Now one_info variable cotain
string = string + some other content
<xsl:template match="root">
<xsl:for-each select="info">
<xsl:variable name="one_info">
<xsl:call-template name="recursive">
<xsl:with-param name="value" select="."/>
</xsl:call-template>
</xsl:variable>
<xsl:value-of select="$one_info"/><br/>
</xsl:for-each>
</xsl:template>
<xsl:template name="recursive">
<xsl:param name="value" select="0"/>
<xsl:value-of select="concat(concat('a',$value),'|')"/>
</xsl:template>
Regards,
Balaji. M
> > > Slawek- Hide quoted text -
>
> - Show quoted text -