[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Finiding nodes filtered by attribute


Subject: Re: [xsl] Finiding nodes filtered by attribute
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 8 Nov 2002 14:37:53 GMT

Note you don't find tags at all in XSLT but rather element naodes, but:

> 1)How would I do a match to find all <td> tags that don't have an attribute named class?
td[@class] if you mean all child elements or //td[@class] if you mean
anywhere in the document.

2)How would I do a match to find all <td> tags that don't have a class attribute equal to "a" or have no class attribute at all?
td[not(@class='a')] if you mean all child elements or
//td[not(@class='a')] if you mean anywhere in the document.

 
3)How would I do a math on all <td> tags that don't have any attributes?
td[not(@*)] if you mean all child elements or
//td[not(@*)] if you mean anywhere in the document.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread
Keywords