xsl-list
[Top] [All Lists]

RE: Ordering Mathmatical functions in XSLT

2004-08-01 11:35:50

Also Is there a between function?
Example: If test="number($var1) between 5 and 9


Provided you are dealing with integers, XPath 2.0 allows you to write

$var1 = 5 to 9

For the more general case, you need

$var ge 5 and $var le 9

which is probably better anyway, as it places fewer demands on the
optimizer.

Michael Kay



<Prev in Thread] Current Thread [Next in Thread>
  • RE: Ordering Mathmatical functions in XSLT, Michael Kay <=