[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: select all nodes WITHOUT a specific attribute?

Subject: RE: select all nodes WITHOUT a specific attribute?
From: Nisheet Verma <NisheetV@xxxxxxxxxxx>
Date: Mon, 3 Dec 2001 12:20:27 -0800
select all nodes
try
<xsl:for-each select="things/thing[not(@id!='')]">

It works.
I don't know why I would need not() here but <xsl:for-each
select="things/thing[@id='']"> does not work hence reversed the logic and
introduced not() and it works.


Nisheet

-----Original Message-----
From: William Bagby [mailto:williamb@xxxxxxxxx]
Sent: Monday, December 03, 2001 11:42 AM
To: XSL Mailing List (E-mail)
Subject:  select all nodes WITHOUT a specific attribute?


How do I select all nodes that DO NOT have a specific attribute?

For example, I have 

<things>
    <thing id="1">One</thing>
    <thing>shoe</thing>
    <thing>bear</thing>
    <thing id="2">Two</thing>
    <thing id="3">Three</thing>
    <thing>airplane</thing>
    <thing id="4">Four</thing> 
    <thing id="5">Five</thing>
</things>

and I want:

    <thing>shoe</thing> 
    <thing>bear</thing> 
    <thing>airplane</thing>

What I got so far is

<xsl:for-each select="things/thing[string-length(@id) = 0]">
    ...
</xsl:for-each>

This seems to work, but it rubs me the wrong way.  Is there a more elegant
solution?

William Bagby

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

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.