| 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 < instead of > for the greater than.
select="foo[ @bar > 200 and @bar < 100 ]"
or if you hate writing the < 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 |
- XPath
- Jon Wynacht - Mon, 31 Jul 2000 07:23:59 -0700
- Steve Muench - Mon, 31 Jul 2000 07:43:39 -0700 <=
|
|