Re: [xsl] Converting a string to Uppercase or Lowercase without using translate() ?

Subject: Re: [xsl] Converting a string to Uppercase or Lowercase without using translate() ?
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Mon, 26 Nov 2007 14:28:32 -0500
At 2007-11-26 18:59 +0000, Gareth Howells wrote:
I'm trying to convert a string to uppercase before using it in a select
statement using XSLT 1.0, and for now I'm using translate() as follows:

<xsl:variable name="pClubCaps" select="translate($pClub,
'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSSTUVWXYZ')" />

where $pClub is a parameter passed to the stylesheet from a JSP page. Of
course, converting to lowercase would simply require the second and third
parameters of translate() to be switched.

I was wondering if there's a nicer way of converting strings to upper or
lower case, rather than using translate()?

If by "nicer" you'll accept "more compact", this is what I direct my students to include at the top of their stylesheets:


<!DOCTYPE xsl:stylesheet [
  <!ENTITY lower 'abcdefghijklmnopqrstuvwxyz'>
  <!ENTITY upper 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'>
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                version="1.0">


Then, in your stylesheet you would have:


<xsl:variable name="pClubCaps"
              select="translate($pClub,'&lower;','&upper;')"/>

But as for functionality, translate() is all we have to work with in XSLT 1.0.

I hope this helps.

. . . . . . . . . . Ken


-- Comprehensive in-depth XSLT2/XSL-FO1.1 classes: Austin TX,Jan-2008 World-wide corporate, govt. & user group XML, XSL and UBL training RSS feeds: publicly-available developer resources and training G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995) Male Cancer Awareness Nov'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal

Current Thread