Subject: RE: XPath
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Mon, 31 Jul 2000 15:51:41 +0100
|
> 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
> statements but would rather do it with one if possible...
Provided it's a numeric comparison, use
select="//item[@att > $x and @att < $y]"
XPath can't do alphabetic range comparisons.
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|