Subject: Re: Keep it simple S...
From: Mike Brown <mike@xxxxxxxx>
Date: Wed, 12 Dec 2001 14:28:27 -0700 (MST)
|
Jarno.Elovirta@xxxxxxxxx wrote:
> <xsl:if test="contains($getit, '"')">
Sometimes even that's not enough.
For example, you can't have
<xsl:if test="contains($getit, ''')">
because the XPath expression is unparseable, even though
the attribute is. For those circumstances, define
<xsl:variable name="q">'</xsl:variable>
<xsl:variable name="qq">"</xsl:variable>
and reference $q or $qq where needed.
Example:
<xsl:value-of select="concat('he said, ',$qq,'don',$q,'t worry.',$qq)"/>
- Mike
____________________________________________________________________________
mike j. brown, fourthought.com | xml/xslt: http://skew.org/xml/
denver/boulder, colorado, usa | personal: http://hyperreal.org/~mike/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|