RE: [xsl] escaping inverted commas

Subject: RE: [xsl] escaping inverted commas
From: "Kathy Burke" <Kathy_Burke@xxxxxxxxx>
Date: Wed, 22 Oct 2003 11:11:21 -0400
Here is a template from Jeni Tennison - works great for escaping all sorts
of things. Just call it from wherever you need it.

<xsl:template name="escape-apos">
	<xsl:param name="string"/>
	<xsl:variable name="apos" select='"&apos;"' />
	<xsl:choose>
		<xsl:when test='contains($string, $apos)'>
			<xsl:value-of select="substring-before($string,
$apos)" />
			<xsl:text>\'</xsl:text>
			<xsl:call-template name="escape-apos">
				<xsl:with-param name="string"
select="substring-after($string, $apos)" />
			</xsl:call-template>
		</xsl:when>
		<xsl:otherwise>
			<xsl:value-of select="$string" />
		</xsl:otherwise>
	</xsl:choose>
</xsl:template>


-----Original Message-----
From: David Elsmore [mailto:delsmore@xxxxxxxxxxxxx]
Sent: Wednesday, October 22, 2003 10:45 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] escaping inverted commas


Hi,

Given the following snippet:

<feedback>That's correct</feedback>

How can I achieve this output?

That\'s correct

Thanks in advance

-- 
David Elsmore
IT Development Manager
School of Social Sciences and Law
Oxford Brookes University
Tel: 01865 484176
email: delsmore@xxxxxxxxxxxxx



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



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


Current Thread