Re: [xsl] most efficient escape quotes?

Subject: Re: [xsl] most efficient escape quotes?
From: Andrew Welch <andrew.j.welch@xxxxxxxxx>
Date: Tue, 10 Feb 2009 16:49:31 +0000
2009/2/10 Robert Koberg <rob@xxxxxxxxxx>:
> Hi,
>
> With XSL 1.0 and XPath 1.0 I had used recursion to escape quotes. Using
> XPath 2.0, is the most efficient 'escape quotes' (\") the following:
>
> <xsl:sequence select="string-join(tokenize(., '&quot;'), '\&quot;')"/>
>
> Is there a more efficient (fastest, least memory) way?

I'd prob go for:

replace(., '&quot;', '\\&quot;')


-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

Current Thread