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

Re: replace -x to -X

Subject: Re: replace -x to -X
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Mon, 10 Jul 2006 22:08:23 +0530
xsl remove first letter
Can you please clarify whether the string is of form string1-string2.
Or is it of form string1-string2- ......... -stringN ?

Is its of 2nd form, then you have to do what Andrew has told.

Is its of 1st form, then you can write the code as below:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text" />

  <xsl:variable name="small" select="'abcdefghijklmnopqrstuvwxyz'" />
  <xsl:variable name="caps" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />

  <xsl:template match="/">
     <xsl:variable name="tmp_string" select="'JIMMY-DIMMy'" />

     <xsl:variable name="string1"
select="substring-before($tmp_string, '-')" />
     <xsl:variable name="string2" select="substring-after($tmp_string, '-')" />

     <xsl:variable name="result"
select="concat(translate(substring($string1,1,1),$small,$caps),translate(substring($string1,2),$caps,$small),'-',translate(substring($string2,1,1),$small,$caps),translate(substring($string2,2),$caps,$small))"
/>

<xsl:value-of select="$result" />

</xsl:template>

</xsl:stylesheet>

Regards,
Mukul

On 7/10/06, Renate <renaate@xxxxxxxxx> wrote:
I have a string $tmp_string.

for ex., JIMMY-DIMMy

And I need to change the following:
first letter is in uppercase
other letters are in lowercase
first letters after "-" sign also is in uppercase

the result will be:
Jimmy-Dimmy


I know how to make Jimmy-dimmy, but how to make Jimmy-Dimmy...???

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.