Subject: Re: Non-existing node
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 17 Sep 2001 09:45:21 +0100
|
> Well, I already knew that ;)
> The problem is that this is true for a non-existing node:
> <xsl:if test="SomeNode!=''">
> So the value returned must be "something"...
which system are you using?
That test should return false (and saxon and msxsl do the right thing)
SomeNode!=''
see the XPath spec:
SomeNode!=''
s true if and only if there is a node in the node set selected by
SomeNode such that that node has string vale != ''.
If the node set is empty clearly there is no node in the set with this
propoerty so the test is false.
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|