xsl-list
[Top] [All Lists]

Re: negate predicate

2004-12-14 07:37:36


  I want to select the text of all descendants of a node which *don't*
  have an attribute called 'id' (and none of the nodes which are
  descendants of nodes with id attributes).

By that I think you mean you want to select all text nodes that don't
have an ancestor with an id attribute, that would be

//text()[not(ancestor::*/@id)]

Note by the way that [(_at_)id = '']/doesn't test if te element has an id
attribute, just if it is empty <foo id=""/> woul dtest true, you want
[not(@id)] to test for the attribute itself rather than its value.

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>