xsl-list
[Top] [All Lists]

Re: preceding-sibling::node()[1] to root node

2005-06-04 02:41:18
On 6/4/05, Mukul Gandhi <mukul_gandhi(_at_)yahoo(_dot_)com> wrote:
I have a question..

What should be the output of?

<xsl:template match="/">
 <xsl:value-of
select="count(preceding-sibling::node()[1])" />
</xsl:template>

Should it be 0 or 'NaN' .. Or something else?


This is a very easy, straightforward to answer question.

How many preceding-sibling nodes does the document node have?

  Exactly zero.

  Therefore, the expression in the brackets is the empty node-set.

  How many elements does the empty node-set have?
  Exactly zero.

Therefore the answer is: 0


Cheers,
Dimitre Novatchev.

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>