Re: [xsl] A way to use Single quote or double quote in XML and/or output it into HTML & FO without resorting to CDATA in the XML?

Subject: Re: [xsl] A way to use Single quote or double quote in XML and/or output it into HTML & FO without resorting to CDATA in the XML?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 1 Oct 2003 16:19:46 +0100
> How to use it in the translate() function?
>  translate('what&quote;s  new','&quote;','i') generates parser error; 

well if it's a parse error then that is from an xml parser, which
doesn't of course know anything about xpath and considers all of the
above just as a simple string. Since that string contains ' characters
you can't put it in a ' delimited attribute value you have to use
"-delimited value, or write the ' as &apos;
so either of

select="translate('what&quote;s  new','&quote;','i')"

or

select='translate(&apos;what&quote;s  new&apos;,&apos;&quote;&apos;,&apos;i&apos;)'

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread