Subject: RE: Need to detect if a node has a ' or ' or " or " within it
From: "Gurnam Bedi" <Gurnam.Bedi@xxxxxxxxxxxxxx>
Date: Tue, 27 Aug 2002 14:09:14 -0400
|
Works like a charm. Thank you Jeni and Michael for the help!
-G
p.s. needed the variable to be setup first before it worked as suggested by
Michael
-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Jeni Tennison
Sent: Tuesday, August 27, 2002 12:49 PM
To: Gurnam Bedi
Cc: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: Need to detect if a node has a ' or ' or " or
" within it
Hi Gurnam,
> How do I test in a choose if the xml node contains a ' " " OR
> ' in the text value.
Well, ' and ' are the same as far as XSLT is concerned, as are "
and ". So you can use the XPath:
contains(., '"') or contains(., "'")
In XSLT, this XPath will live inside an attribute so either the
apostrophes or the double-quotes will need to be escaped (and you can
escape both if you like). For example:
<xsl:if test="contains(., '"') or contains(., "'")">
...
</xsl:if>
or:
<xsl:if test='contains(., '"') or contains(., "'")'>
...
</xsl:if>
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
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 |
- RE: SAXParseException, (continued)
- Robert Koberg - Tue, 27 Aug 2002 11:25:31 -0400 (EDT)
- Manish Shah - Tue, 27 Aug 2002 11:38:08 -0400 (EDT)
- Gurnam Bedi - Tue, 27 Aug 2002 12:17:48 -0400 (EDT)
- Jeni Tennison - Tue, 27 Aug 2002 12:47:20 -0400 (EDT)
- Gurnam Bedi - Tue, 27 Aug 2002 14:05:28 -0400 (EDT) <=
- Michael Kay - Tue, 27 Aug 2002 12:58:34 -0400 (EDT)
- J.Pietschmann - Tue, 27 Aug 2002 16:14:48 -0400 (EDT)
- Michael Kay - Tue, 27 Aug 2002 12:52:07 -0400 (EDT)
- Manish Shah - Tue, 27 Aug 2002 13:04:50 -0400 (EDT)
|
|