|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] 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 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








