Subject: XPath question
From: "Wei-Chin Hsieh" <whsieh@xxxxxxxxxxxx>
Date: Tue, 11 Jun 2002 18:48:04 -0500
|
Hello,
I tried the following query and got results even the actual number of count
is 1. It seems that if either side of the expression is true, the whole
expression is true.
/someelement[2 < count(somechildelement) < 5]
But the following works correctly.
/someelement[count(somechildelement) > 2 and count(somechildelement) < 5]
My question is does XPath allow range search expression like the first case?
Thanks in advance.
Wei-Chin Hsieh
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|