Re: XPath

Subject: Re: XPath
From: "Steve Muench" <smuench@xxxxxxxxxxxxx>
Date: Mon, 31 Jul 2000 07:43:39 -0700
| 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