How to read a double value from a String with a certain precision (say 4) assuming the string contains something like "10.1234" using this api
|
If you want decimal precision, Instead, use Read The Floating-Point Guide for more information. |
|||
|
|
|
|||
|
|
|
I assume that your String also contains letters. You can parse the number out of the String first:
|
|||
|
|
|
You can use regular expression to truncate the
This prints:
How the regex worksIt captures a literal The advantage of this over, say, a simple See also |
||||
|
|
|
You can do something like Math.round(number*100)/100 to get the precision, but this will probably not do what you want due to the internal representation of floats and doubles. If you really need to work with a fixed number of digits after the decimal point consider using BigDecimal. For formatting output you can use the C-like printf functionality as decribed in this article. It is not pretty but practical. |
|||||||
|