Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you do case conversion in XSL?

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

3 Answers

up vote 76 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>
share|improve this answer
1  
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

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

translate("xslt", "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
share|improve this answer

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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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