I need the number of integer digits and the number of digits after decimal in a number like 234.12413 in Java.
Please help.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
A double is not always an exact representation. You can only say how many decimal places you would have if you converted it to a String.
This will only work for numbers which are not turned into exponent notation. You might consider 1.0 to have one or no decimal places. |
|||
|
|
|
|||
|
|
|
|||||||||||
|
|
1) convert to string 2) substring from '.' to end 3) get the length of this substring |
|||
|
|
DoubleorFloatto show only a certain limit of precision. E.G. '12.158384' -> '12.16', '3.33333..' -> '3.33'. – Andrew Thompson Jun 7 '11 at 11:57