This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Controlling which nodes to process


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]