|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: comparison of strings having single quote
Hi Phani, > I have a further problem... how are we going to handle a case where > my string has both double quotes and single quotes. I attach my > previous mail for your reference. In that example if I have to check > for -----S"RI's---- how do I do it. Can you plz let me know. For that, you have to create the string through concatenation. At the XPath level, you need something like: ARTIST = concat('-----S"RI', "'", 's----') At the XSLT level, you need to escape either the "s or 's, depending on which you use to delimit the attribute. So you need either: <xsl:if test="ARTIST = concat('-----S"RI', "'", 's----')"> ... </xsl:if> Or: <xsl:if test='ARTIST = concat('-----S"RI', "'", 's----')'> ... </xsl:if> Sometimes people declare a variable to hold apostrophes: <xsl:variable name="apos" select='"'"'" /> and then use that within the concatenation to make it easier to read: <xsl:if test="ARTIST = concat('-----S"RI', $apos, 's----')"> ... </xsl:if> ---- Good news for XPath 2.0 -- apparently in XPath 2.0, you'll be able to escape double quotes or apostrophes within a string by doubling them up. So you will then be able to do: ARTIST = '-----S"RI''s----' or: ARTIST = "-----S""RI's----" Cheers, Jeni --- Jeni Tennison http://www.jenitennison.com/ XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






