Re: text-transform

"Thiadmer Sikkema" <[email protected]> Fri, 4 Apr 2003 08:52:58 +0200
Newsgroups gmane.text.xml.xsl.general
Message-ID <OFD1453A84.0D8229E7-ONC1256CFE.0024EBC5-C1256CFE.0025C704@gpnet.nl>
What about: the xpath function translate? Suppose you use a style sheet to 
transform your document to a XSLFO this could be a solution:

<xsl:value-of 
select="translate(.,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')">

This function does a character based 'replace'. Next Xpath version will 
probably support regular expressions...


Thiadmer