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

Re: Translating "("

Subject: Re: Translating "("
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 15 Nov 2004 16:02:36 GMT
geert david
   > now to get that expression into a select attrbute. As far as XML is
   > concerned it's all just an opaque string, that has three " and five '
   > so if you are using " to delimit the attrinute you need to &quot; the
   > occurrences of " in the attribute value
   > 
   > select="translate(normalize-space(ln:term),
   >    concat(&quot;'&#160;/()&quot;,'&quot;')
   >    '_')"
   > 
   > David

   And if your parser still gets confused, or all the quotes are turning before your eyes, just use two 
   variables like:

       <xsl:variable name="apos">&apos;</xsl:variable>
       <xsl:variable name="quot">&quot;</xsl:variable>



In that case you needn't use entity refs at all, you could just go


       <xsl:variable name="apos">"</xsl:variable>
       <xsl:variable name="quot">'</xsl:variable>

although it doesn't really help in this case much as you'd still have to
concat() those variables with the rest of the string. what you could do
though is to put the whole string in a variable of this form


       <xsl:variable name="x">'&#160;/(),"</xsl:variable>

then you can use

select="translate(normalize-space(ln:term),$x,'_')



   Though, as discussed recently on this list, this creates document tree fragments rather than strings 
   in XSLT 1. (Not that you would notice much about that..)

true (yes it does, and no it doesn't have any noticable effect on
performance. For example I think I remember Michael saying saxon anyway
spots this usage (a rtf just conainting a string)  and optimises away
most of the cost of builting a real rtf.

   Grtz,
   Geert

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________

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.