Re: [xsl] things about grouping

Subject: Re: [xsl] things about grouping
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 29 Nov 2012 10:12:59 +0000
On 29/11/2012 05:58, Ihe Onwuka wrote:
and your expression is div[(heading|para].

No.


div[not(* except (heading,para))]

selects those div for which all children are either heading or para
You can read except as "other than"

not (children other than (heading and para) )


Your expression selects divs that have a heading or para element.


so the results are different if there are no child elements
the original is true and yours is false and different if there are elements other than heading or para when yours would be false and the original true.



David -- google plus: https:/profiles.google.com/d.p.carlisle

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________


Current Thread