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: Excluding nodes


> How do I match everything except a given node?
> 
> I know //*/* matches any node with an element as a parent.

No, it matches every element with an element as a parent.
  
> I want to match every node with an element as a parent except for one node

> with a specific name (news_detail.)
> 

//*/node()[not(self::news_detail)]

Mike Kay 


 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]