Subject: RE: Looping over characters in a string
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Thu, 10 May 2001 12:00:18 +0100
|
> Is it possible to loop over characters in a string? For
> example, I want:
>
> XML: <tag>value</tag>
>
> HTML: XXXXXvalue
> (5 X's, 1 for each character of 'value')
>
Use the //* trick:
<xsl:for-each select="//*[position() <= string-length(tag)">
<xsl:text>X</xsl:text>
</xsl:for-each>
<xsl:value-of select="tag"/>
Mike Kay
Software AG
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|