xsl-list
[Top] [All Lists]

Re: Finiding nodes filtered by attribute

2002-11-08 07:37:53

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[(_at_)class] if you mean all child elements or //td[(_at_)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



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