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

RE: How to search for <, >, etc. in a string?

Subject: RE: How to search for <, >, etc. in a string?
From: Brian Young <Brian.Young@xxxxxxx>
Date: Thu, 28 Sep 2000 10:03:51 -0400
brian young studio
Hello David,

That did the trick, thanks!

Thanks,
   Brian Young


-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Wednesday, September 27, 2000 11:24 AM
To: xsl-list@xxxxxxxxxxxxxxxx
Subject: Re: How to search for <, >, etc. in a string?



> I have XML that contains some CDATA:
> 
> <string>
> 	<![CDATA[<u>Link containing a & character</u>]]>
> </string>


which is the same input tree to xsl as


<string>
	&lt;u&gt;Link containing a &amp; character&lt;/u&gt;
</string>




> I'd like to strip out the <u> and </u>, but only if they exist in the CDATA. >  To that end, I've used the string functions.  An example of this is:
> 
> <xsl:when test="starts-with($linkTextUnStripped, '<u>')">
> 	<xsl:value-of select="substring($linkTextUnStripped, 4)" />
> </xsl:when>

You didn't specify how you set the variable linkTextUnStripped
but unless it was defined via normalise-space() then
"4" is unlikely to be the right number, and starts-with is not going to
be true. As the fist four characters are
&#10;&#32;&#32;&#32;

The less than (&lt;) is the 10th character in the string, unless I mis
counted.

Why not use 


<xsl:when test="contains($linkTextUnStripped, '&lt;u&gt;')">
	<xsl:value-of select="
    substring-before(substring-after(, '&lt;u&gt;'), '&lt;/u&gt;') "/>
</xsl:when>

David


 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.