Subject: RE: Controlling which nodes to process
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Fri, 6 Jul 2001 14:22:11 +0100
|
> is there an expression to select all the children except one ?
> something as : <xsl:apply-templates select="* and not( caption)"/>
<xsl:apply-templates select="*[not(self::caption)]"/>
Strictly this processes all the child ELEMENTS except the caption elements;
if you want all the child NODES except the caption elements write:
<xsl:apply-templates select="node()[not(self::caption)]"/>
Mike Kay
Software AG
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|