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

Re: possible value-of return values

Subject: Re: possible value-of return values
From: tcn@xxxxxxxxxxxxx (Trevor Nash)
Date: Mon, 30 Jul 2001 19:22:08 GMT
set of possible values
On Mon, 30 Jul 2001 14:38:52 -0400, you wrote:

>Hello,
>
>Given the following XML document:
><root>
><user name="Alex" password="Elephant" color=""/>
><user name="Reuter" password="Rhino"/>
></root>
>I was wondering if anyone knew the distinction in return values between:
><xsl:value-of select="/root/user[@name='Alex']/@color"/>
>And
><xsl:value-of select="/root/user[@name='Reuter']/@color"/>
>
>
>My guess is they would both be null, but I need to execute logic which
>hinges on whether the attribute exists and has a null value OR whether it
>exists at all.
>
Not 'null' but an empty string.  Both are empty strings but for
different reasons: in the first case you are getting a node set
containing the attribute node, which when converted to a string gives
the value of the attribute, in the second you are getting an empty
node set which when converted to a string gives you "".  But when
converted to a boolean a non-empty node-set gives you true, and an
empty one false.  So:

<xsl:if test="/root/user[@name='Alex']/@color">
    This is true 
</xsl:if>
<xsl:if test="/root/user[@name='Reuter']/@color">
    This is false
</xsl:if>
>Anything you got would be great.
>
>Thanks,
>
>	Alex
>
Regards,
Trevor Nash
--
Traditional training & distance learning,
Consultancy by email

Melvaig Software Engineering Limited
voice:     +44 (0) 1445 771 271 
email:     tcn@xxxxxxxxxxxxx

 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.