Subject: Re: Re: Comparing two xml documents
From: "Robert P. J. Day" <rpjday@xxxxxxxxxxxxxx>
Date: Wed, 12 Mar 2003 17:42:05 -0500 (EST)
|
On Wed, 12 Mar 2003, Ragulf Pickaxe wrote:
> What is the differenct between:
> <xsl:template match="*">
>
> and
>
> <xsl:template match="node()">
i went through this grief recently. as i read it, "*" will
match any element, while node() will match any of
1) elements
2) comments
3) processing instructions
4) text nodes
is this about right?
rday
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|