Subject: RE: XPath
From: "Jon Wynacht" <jwynacht@xxxxxxxxx>
Date: Mon, 31 Jul 2000 08:00:42 -0700
|
It actually is in this format:
Thursday, July 20, 2000 10:38:21 AM PDT
Though with a JS extension I could whittle it down to this format:
7/20/2000
Are either possible?
Jon
-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxx]On Behalf Of Kay Michael
Sent: Monday, July 31, 2000 7:52 AM
To: 'xsl-list@xxxxxxxxxxxxxxxx'
Subject: RE: XPath
> 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
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|