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

Re: hoe to use "(" within a variable

Subject: Re: hoe to use "(" within a variable
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Mon, 12 Aug 2002 11:52:53 +0100
hoe quotes
Hi Vinoth,

> I need to define a variable in XSL sheet as follows: <xsl:variable
> name="entering_log" select='sprintf(log_str, "\n%s: %d: %s: %s",
> __FILE__,__LINE__,fn, "Entering"); log_func();' ></xsl:variable> I'm
> getting an error: "Could not find function: sprintf()" from the XSL
> engine. How to escape the characters ( ) " ' so that they will be
> interpreted as normal text by the XSL engine.

I guess that you want the $entering_log variable to hold the string:

  'sprintf(log_str, "\n%s: %d: %s: %s", __FILE__, __LINE__, fn,
   "Entering"); log_func();'

If so, you need to put quotes around the string within the select
attribute. Since the string contains double quotes, you need to use
single quotes around it within the attribute. You can then use either
single or double quotes to delimit the attribute, but whichever you
use, you must escape those quotes within the attribute value. So you
could use single quotes, as follows:

<xsl:variable name="entering_log"
  select='&apos;sprintf(log_str, "\n%s: %d: %s: %s", __FILE__,
          __LINE__, fn, "Entering"); log_func();&apos;' />

or you could use double quotes and escape the double quotes in the
attribute value, as follows:

<xsl:variable name="entering_log"
  select="'sprintf(log_str, &quot;\n%s: %d: %s: %s&quot;, __FILE__,
          __LINE__, fn, &quot;Entering&quot;); log_func();'" />

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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.