vote up 1 vote down star

I am using an XSLT stylesheet to create an Excel document from an XML file. One of the values that I am pulling in, I want to display as uppercase. How is this possible?

flag

3 Answers

vote up 3 vote down check

XSLT 2.0 has fn:upper-case() and fn:lower-case() functions. However in case you are using of XSLT 1.0, you can use translate():

<xsl:template match="/">
  <xsl:value-of select="translate(doc, $smallcase, $uppercase)" />
</xsl:template>
<xsl:variable name="smallcase" select="'abcdefghijklmnopqrstuvwxyz'" />
<xsl:variable name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
link|flag
Damn, Too slow! – David Christiansen Jul 30 at 14:55
+1, though it's the same strategy as my answer keeping variables of the letters is certainly a more reusable solution. – Welbog Jul 30 at 15:13
vote up 1 vote down

XPath 2.0 has fn:upper-case(), which also does Unicode correct case mappings.

link|flag
vote up 4 vote down

You can use the translate() function in XSLT 1.0:

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

If you're lucky enough to have access to XSLT 2.0, you can use the upper-case() function:

<xsl:value-of select="upper-case(//some-xpath)"/>

See the XPath function reference page for more details.

link|flag
+1 ;-) – Tomalak Jul 30 at 14:53
1  
String manipulation in XSLT, what a joke. – Welbog Jul 30 at 14:54
1  
Asker's name looks vaguely French... what happens to é ? (sorry, I couldn't resist...) – AakashM Jul 30 at 14:55
@AakashM: That's the problem with the translate() function. You have to specify all of these things yourself. upper-case() is a much better option but it's not supported widely enough. – Welbog Jul 30 at 15:12

Your Answer

Get an OpenID
or

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