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: xpath not..


> in my xml file i have sth like
> 
> ...
> <name>firstname</name>
> <lastname>firstlastname</lastname>
> <street>firststreet</street>
> <city>firstcity</city>
> ...
> 
> how can i say sth like
> select name, lastname and city but NOT street

select="name|lastname|city"
or
select="*[not self::street]"

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]