[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Spaces to %20


Subject: Re: [xsl] Spaces to %20
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 6 Jul 2007 10:50:36 +0100

   You could try ;

   <xsl:variable name="space">%20</xsl:variable>
  <xsl:variable name="kw" select="translate(.,' ',$space)"/>
 

that would change spaces to % characters (the 20 would be ignored as the
string in the second argument of translate just has one character.

XPath2 has specific functions for encoding URI strings which could be
used, or for xslt1, the faq or archives have several string replace
templates that can be used.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________


Current Thread