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: How to include a single quote in a parameter string


> that gives me errors:

You know it would be a lot easier to help if you said what the errors
were.

however in this case it is possible to spot the error:

"'NRC Research Press: Revue du génie et de la science de
l'environnement'"

after it has been through the XML parser that XPath expression is

'NRC Research Press: Revue du génie et de la science de
l'environnement'

which is an error, you can't use ' in an XPath string delimuted by '.

So you need the Xpath expression

"NRC Research Press: Revue du génie et de la science de
l'environnement"

and to get that into an XML argument you need to escape either the " or
the ' so either

select=""NRC Research Press: Revue du génie et de la science de
l'environnement""

or

select='"NRC Research Press: Revue du génie et de la science de
l'environnement"'

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]