xsl-list
[Top] [All Lists]

Re: [xsl] most efficient escape quotes?

2009-02-10 11:49:59
2009/2/10 Robert Koberg <rob(_at_)koberg(_dot_)com>:
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/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>