[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: Mixed content variation
Subject: Re: Mixed content variation
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 7 Apr 2000 22:35:48 +0100 (BST)
|
> 1. Select the text node and all child nodes of <foo> except for the <date>
> child
select="node()[not(self::foo)]
actually that picks up comments and pis as well, more exactly just
elements or text is
select="text()|*[not(self::foo)]"
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|