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

Re: XPath

Subject: Re: XPath
From: "Steve Muench" <smuench@xxxxxxxxxxxxx>
Date: Mon, 31 Jul 2000 07:43:39 -0700
xpath dollar sign
| Is there any way to look for items in an xml document that have an attribute
| with a value greater than x and less than y? I can do it with two xpath

Just use a predicate that puts the two conditions
together with the "and" operator.

You will need to use &lt; instead of > for the greater than.

  select="foo[ @bar > 200 and @bar &lt; 100 ]"

or if you hate writing the &lt; just flip-flop the operands
to get:

  select="foo[ @bar > 200 and 100 > @bar]"

If your "x" and "y" are actually XSLT variables or parameters,
then use the dollar-sign notation:

  select="foo[ @bar > $x and $y > @bar]"

______________________________________________________________
Steve Muench, Lead XML Evangelist & Consulting Product Manager
Business Components for Java & XSQL Servlet Development Teams
Oracle Rep to the W3C XSL Working Group
Author "Building Oracle XML Applications", O'Reilly, Oct 2000


 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.