[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: replace -x to -X
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.
|
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
|