xsl-list
[Top] [All Lists]

RE: question about child::node()

2003-06-18 05:12:40
Hi,

what is the difference between:
<xsl:if test="local-name(//preface/child::paramod)"/>

This will evaluate //preface/child::paramod, take the first node of the 
node-set, get it's localname, and test if it's an empty string or not.

and
<xsl:if test="local-name(//preface/child::node())='paramod'">

Evaluate //preface/child::paramod, take the first node of the node-set, get 
it's localname, and test if it's "paramod"

i want to test if the child of the node "prefcae"  is "paramod" node.

  //preface/child::paramod

Cheers,

Jarno - Leaether Strip: Life Is Painful (Bastard)

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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