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

RE: the fastest way to test if variable is empty

Subject: RE: the fastest way to test if variable is empty
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Wed, 8 Dec 2004 16:21:00 -0000
redefining variable xsl
> Can anybody tell me the fastest way, how to test, if variable 
> contains some 
> text or number?
> 
> For now, i am using test "string-length($variable)=0", but 
> seems not to be the fastest.

What makes you think it isn't the fastest?

Speed of different operations will vary between processors, but I would be
very surprised if this operation is the cause of your performance
difficulties.

I would recommend writing it as $variable='' since a non-optimizing
processor will otherwise count all the characters in the string, which can
take a while if the string is long and a variable-length character
representation is used (e.g. UTF-8 or UTF-16).

> Somebody tells me to use test "$variable", but with my 
> XalanC, it seems to be true everytime.

That makes me suspect you have declared the variable as

<xsl:variable name="x">
  ...
</xsl:variable>

which means that (contrary to what you said) its value isn't a string or a
number, but a result-tree-fragment, which is likely to be much less
efficient.

Michael Kay
http://www.saxonica.com/

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.