| Subject: Re: [xsl] Need to detect if a node has a ' or ' or " or " within it From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx> Date: Tue, 27 Aug 2002 17:48:30 +0100 | 
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
| Current Thread | 
|---|
| 
 | 
| <- Previous | Index | Next -> | 
|---|---|---|
| [xsl] Need to detect if a node has , Gurnam Bedi | Thread | RE: [xsl] Need to detect if a node , Gurnam Bedi | 
| RE: [xsl] XSLT to summarise an XSLT, Robert Koberg | Date | RE: [xsl] SAXParseException, Michael Kay | 
| Month |