vote up 7 vote down star
2

How do you do case conversion in XSL?

<xsl:variable name="upper">UPPER CASE</xsl:variable>
<xsl:variable name="lower" select="???"/>
flag

40% accept rate

3 Answers

vote up 14 vote down check

In XSLT 1.0 the upper-case() and lower-case() functions are not available. If you're using a 1.0 stylesheet the common method of case conversion is translate():

<xsl:variable name="smallcase" select="'abcdefghijklmnopqrstuvwxyz'" />
<xsl:variable name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />


<xsl:template match="/">
  <xsl:value-of select="translate(doc, $smallcase, $uppercase)" />
</xsl:template>
link|flag
2 minutes too late. This is what I get for going into detail. :) – Jweede Feb 25 at 14:57
Is there a Unicode version? This solution is not going to work with funny characters... – mjs Feb 25 at 15:06
For XSLT 1.0 you'd have to add more to the smallcase/uppercase variables or use an extension function. – Jweede Feb 25 at 15:09
1  
If you decided not to use the extention function you might be able to make a complete list using the Unicode Character Database: unicode.org/Public/UNIDATA/UCD.html – Jweede Feb 25 at 15:15
vote up 2 vote down

upper-case(string) and lower-case(string)

Link with more info

link|flag
vote up 5 vote down

XSLT 2.0 has upper-case() and lower-case() functions. In case of XSLT 1.0, you can use translate():

translate("xslt", "abcdefghij...z", "ABCDEFGHIJ...Z")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.