Re: [xsl] except

Subject: Re: [xsl] except
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 03 Feb 2014 01:10:30 +0000
On 02/02/2014 21:50, Graydon wrote:
I think it should be

descendant::* except self::heading

if I want all the descendant elements without any of the descendant
elements who happen to be heading elements.

I'm not sure if you mean by "I think it should be" but


descendant::* except self::heading

is same as

descendant::*

as there is no intersection between the descendant and self axis.

David

Current Thread