This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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(., '&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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]