xsl-list
[Top] [All Lists]

Re: Match node() with exception

2004-08-30 14:17:50
Select='local-name != "SchemaVersion"'

or (if you want to process all elements except SchemaVersion),
you can omit them by using an empty template:

...
    <xsl:apply-templates select="*"/>
...
<xsl:template match="SchemaVersion"/>

Cheers
Anton Triest


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