I’m tring to parse a string to parse like this:
Float.parseFloat(value_.toString());
when I parse a string number like: “13299802.60” ,
I get this: 1.3299803E7
I want to get the float number like the string without the exponential sign..
How can this be done?
Thank’s In Advance.
Use this instead
BigDecimal’s are really decimal numbers and not floating point numbers. The scale of 2 (2 decimal digits) will remain