up vote 22 down vote favorite
7
share [g+] share [fb]

How do you do case conversion in XSL?

<xsl:variable name="upper">UPPER CASE</xsl:variable>
<xsl:variable name="lower" select="???"/>
link|improve this question

71% accept rate
feedback

3 Answers

up vote 47 down vote accepted

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|improve this answer
2 minutes too late. This is what I get for going into detail. :) – Jon W Feb 25 '09 at 14:57
Is there a Unicode version? This solution is not going to work with funny characters... – mjs Feb 25 '09 at 15:06
For XSLT 1.0 you'd have to add more to the smallcase/uppercase variables or use an extension function. – Jon W Feb 25 '09 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 – Jon W Feb 25 '09 at 15:15
feedback

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|improve this answer
feedback

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

link|improve this answer
ends up at general page - not specific information – fpmurphy Feb 15 '11 at 16:02
feedback

Your Answer

 
or
required, but never shown

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