RE: [xsl] hoe to use "(" within a variable

Subject: RE: [xsl] hoe to use "(" within a variable
From: Stuart Brown <sbrown@xxxxxxxxxxxxx>
Date: Mon, 12 Aug 2002 11:47:02 +0100
Firstly, you need to double-delimit your select attribute: select="foo"
means "select the foo element"; if you want to select a string, you need to
put select="'string'".  The double quotes are the usual attribute
delimiters, and the single quotes then indicate string delimitation. You
will still have to escape the illegal characters within your string,
however, so it might be much easier just to give the string as the variable
content, rather than using the select attribute:

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

Cheers,

Stuart

> -----Original Message-----
> From: Vinoth Palaniappan [mailto:vinoth@xxxxxxxxxxxx]
> Sent: 12 August 2002 11:17
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] hoe to use "(" within a variable
> 
> 
> Hi,
> 	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.
> 
> ______________________________________________________________
> ______________
> ___________
> Vinoth
> iDEN OMC Software, GSG
> Motorola, India
> voice: 91-040-3308090 extn:3208
> ______________________________________________________________
> ______________
> ___________
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 

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


Current Thread