[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: Renate <renaate@xxxxxxxxx>
Date: Mon, 10 Jul 2006 19:40:13 +0300
|
Actuall max it could be string1-string2-string3, but not more...
I will use the code below,
Thx.
On 7/10/06, Mukul Gandhi <gandhi.mukul@xxxxxxxxx> wrote:
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...???
|
PURCHASE STYLUS STUDIO ONLINE TODAY!
Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!
Download The World's Best XML IDE!
Accelerate XML development with our award-winning XML IDE - Download a free trial today!
Subscribe in XML format
RSS 2.0 |
|
Atom 0.3 |
|
|