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

Re: Saxon-CE... Passing Variable to JS Function

Subject: Re: Saxon-CE... Passing Variable to JS Function
From: "Michael Kay mike@xxxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 30 Jun 2016 20:50:05 -0000
Re:  Saxon-CE...  Passing Variable to JS Function
The value of your variable "simple" is a document node. If you want a string,
use

> <xsl:variable name="simple" select="'string'"/>

or

> <xsl:variable name="simple" as="xs:string">
>         simple
>     </xsl:variable>



Using xsl:variable with content (usually via an xsl:value-of instruction) when
you want a simple string (or other atomic value) is probably the most common
bad habit in XSLT.

In many contexts when a string is needed, you can pass a document node and its
string value will be extracted. But creating a document node is far more
expensive, and it doesn't work if you pass it to a function where the expected
type is more general than xs:string.

Michael Kay
Saxonica

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.