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

Re: XPath for getting the nearest attribute value on t

Subject: Re: XPath for getting the nearest attribute value on the ancestor axis
From: Jeni Tennison <mail@xxxxxxxxxxxxxxxx>
Date: Thu, 16 Aug 2001 17:43:31 +0100
xpath getting attribute value
Hi Sanjay,

> I am at a particular element node and now I need a generic XPath to
> get me the closest Attribute (attributes can be 'name', 'type',
> 'category' and sorts ...), if any, and return its value. This would
> be useful to identify my elements uniquely.

You're close. The main thing is that if you want something that's
located relative to the current node then you have to use a relative
path (one that doesn't begin with /).

For example, if you want to get the nearest ancestor of the current
node that has a name attribute, then you should probably use the
relative path:

  ancestor::*[@name][1]/@name

though you could use the equivalent:

  (ancestor::*/@name)[last()]
  
If you want to find the nearest ancestor of the current node that has
a name, type or category attribute, then you should probably use the
relative path:

  ancestor::*[@name or @type or @category][1]
    /@*[name() = 'name' or name() = 'type' or name() = 'category']

Again, you could use one of the following equivalent paths:

  (ancestor::*/@*[name() = 'name' or name() = 'type' or
                  name() = 'category'])[last()]

  (ancestor::*/@name | ancestor::*/@type |
   ancestor::*/@category)[last()]

I hope that helps,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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.