This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Looping over characters in a string


> 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() &lt;= 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]