I want to convert some numbers which I got as strings into Doubles, but these numbers are not in US standard locale, but in a different one. How can I do that?
|
|
|||
|
|
|
Try
Note that Edit: I originally said that there was another way to convert to |
||||||||
|
|
|
NumberFormat is the way to go, but you should be aware of its peculiarities which crop up when your data is less than 100% correct. I found the following usefull: http://www.ibm.com/developerworks/java/library/j-numberformat/index.html If your input can be trusted then you don't have to worry about it. |
||
|
|
|
|
Do you know which locale it is? Then you can use
this will even work for scientific notations, strings with percentage signs or strings with currency symbols. |
||||||
|
|
|
Use NumberFormat.getNumberInstance(Locale) |
||
|
|
|
|
You use a |
||
|
|
|
|
This should be no problem using java.text.DecimalFormat. |
||
|
|
