Jim Ault wrote:

Seems like a bug to me.
But if you use this form it works as expected.


put 123456.7890 into a
put 123456.7890 + 0 into b
 split a using cr and "."
 split b using cr and "."

-- or

 split b using tab and "."
 split b using null and "."

That's interesting...

Anyway, here's the real puzzle:

If you
put 1 into a
put 1 + 0 into b

Then a is a number and b is a number and a is an integer and b is an integer and a=b.

Split treats them differently:

split a by comma gives an array
split b by comma is still a number

So, the question is:

What's the difference between a and b?


Torbjörn

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to