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?
|
|
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():
|
||||
|
|
|
XPath 2.0 has |
||
|
|
|
|
You can use the
If you're lucky enough to have access to XSLT 2.0, you can use the
See the XPath function reference page for more details. |
||||||||||||
|
