Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
3answers
21k views

How can I convert a string to upper- or lower-case with XSLT?

How do you do case conversion in XSL? <xsl:variable name="upper">UPPER CASE</xsl:variable> <xsl:variable name="lower" select="???"/>
2
votes
1answer
1k views

Convert Unicode/UTF-8 string to lower/upper case using pure & pythonic library

I use Google App Engine and cannot use any C/C++ extension, just pure & pythonic library to do conversion of Unicode/UTF-8 strings to lower/upper case. str.lower() and string.lowercase() don't.
1
vote
0answers
53 views

Follow-Up on String Case Conversions

After having digested this post I collected its knowledge into a self-contained C++ test program (tested with GCC-4.6 with flag -std=gnu++0x) that includes all the alternative methods described in it. ...