[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Need to detect if a node has a ' or ' or " or

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
gurnam bedi
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 &apos; or " or
&quot; within it


Hi Gurnam,

> How do I test in a choose if the xml node contains a ' &quot; " OR
> &apos; in the text value.

Well, ' and &apos; are the same as far as XSLT is concerned, as are "
and &quot;. 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(., '&quot;') or contains(., &quot;'&quot;)">
    ...
  </xsl:if>

or:

  <xsl:if test='contains(., &apos;"&apos;) or contains(., "&apos;")'>
    ...
  </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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.