Re: jstl type conversion

2003-02-05 Thread Shawn Bayern
On Wed, 5 Feb 2003, Steve Morrison wrote:

> It seems as if the jstl (1.0.2) coerces all numbers to a Double, where
> really what I want is to keep it as an integer.
> 
> 250
> 
> returns 125.0.  I'd like it to return just 125 - any hints?

Not all numbers are coerced to Double, but the result of a division with
"/" is, by spec.

If you're concerned simply about display, you can use 
to process the number according to your needs.

-- 
Shawn Bayern
"JSTL in Action"   http://www.manning.com/bayern


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




jstl type conversion

2003-02-05 Thread Steve Morrison

It seems as if the jstl (1.0.2) coerces all numbers to a Double, where 
really what I want is to keep it as an integer.

250

returns 125.0.  I'd like it to return just 125 - any hints?

Thanks,
-Steve


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]