[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: XSLT Problem - Case Conversion

Subject: RE: XSLT Problem - Case Conversion
From: Américo Albuquerque <melinor@xxxxxxxx>
Date: Mon, 6 Oct 2003 12:25:07 +0100
xslt change case
Hi

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of 
> Saurabh Sinha
> Sent: Monday, October 06, 2003 12:00 PM
> To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  XSLT Problem - Case Conversion
> 
> 
> Hi,
> 
> Is there any built-in function like toupper() or
> tolower() in XSL so that we can convert the text -
> such as upper to lower or vice versa? e.g. I want to
> see 'STATUS' or 'STATUSCODE' as 'Status' or
> 'Statuscode.
> 

Use translate
Example:
<xsl:variable name="text" select="'STATUS'"/>
<xsl:value-of
select="translate($text,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqr
stuvwxyz')"/>

This will change 'STATUS' into 'status'

To change 'status' to 'STATUS' just switch the 2º argument with the 3º
<xsl:variable name="text" select="'status'"/>
<xsl:value-of
select="translate($text,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQR
STUVWXYZ')"/>

To get your output, i. e., to change 'STATUS' into 'Status' you'll need
to use both transformations

<xsl:variable name="text" select="'STATUS'"/>
<xsl:value-of
select="concat(translate(substring($text,1,1),'abcdefghijklmnopqrstuvwxy
z','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),translate(substring($text,2),'ABCDEFGHI
JKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz'))"/>

Regards,
Americo Albuquerque


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.