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

Re: xslt replace special characters

Subject: Re: xslt replace special characters
From: "Alice Fan" <arisuu@xxxxxxxxxxx>
Date: Fri, 08 Nov 2002 12:42:40 -0800
xsl replace
Thank you sooo much!!!!. it works perfectly! :)


From: Greg Faron <gfaron@xxxxxxxxxxxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  xslt replace special characters
Date: Fri, 08 Nov 2002 13:33:19 -0700

At 01:14 PM 11/8/2002, you wrote:
thank you. it works if i just use it for one character. can i put in more than one character in the pattern variable at once? if i keep calling the template, obviously i will get the string variable the number of i call the template. so what do you suggest that i do if i have a string like this.
http://www.domain.com?xxx=yyy&www=y
i want to convert

? to %3f
= to %3d
& to %26

You must call the template multiple times, each time feeding it the result of the previous replacement. The following command
<xsl:call-template name="replace">
<xsl:with-param name="string">
<xsl:call-template name="replace">
<xsl:with-param name="string">
<xsl:call-template name="replace">
<xsl:with-param name="string" select="$url"/>
<xsl:with-param name="pattern" select="'&amp;'"/>
<xsl:with-param name="replacement" select="'%26'"/>
</xsl:call-template>
</xsl:with-param>
<xsl:with-param name="pattern" select="'='"/>
<xsl:with-param name="replacement" select="'%3d'"/>
</xsl:call-template>
</xsl:with-param>
<xsl:with-param name="pattern" select="'?'"/>
<xsl:with-param name="replacement" select="'%3f'"/>
</xsl:call-template>
transforms
http://www.domain.com?xxx=yyy&www=y
into
http://www.domain.com%3fxxx%3dyyy%26www%3dy
if the former was located in the variable $url.



Greg Faron Integre Technical Publishing Co.



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


..........................................................
Email: arisuu@xxxxxxxxxxx
Cell: (650) 483-8164
Work: (212) 201-0881
..........................................................

_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail



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.