public static double convertToDouble(String temp){
String a = temp;
//replace all commas if present with no comma
String s = a.replaceAll(",","").trim();
// if there are any empty spaces also take it out.
String f = s.replaceAll(" ", "");
//now convert the string to double
double result = Double.parseDouble(f);
return result; // return the result
}
12 Answers
这就是我要做的
例如,您输入字符串“4 53,53.0”,输出将是双号45563.0
使用
Double.parseDouble()
而不包围try/catch
块会导致潜在的NumberFormatException
输入双字符串不符合有效格式 .Guava为此提供了一个实用程序方法,如果无法解析String,则返回
null
.https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#tryParse(java.lang.String)
Double valueDouble = Doubles.tryParse(aPotentiallyCorruptedDoubleString);
在运行时,格式错误的字符串输入产生
null
分配给valueDouble
您可以使用Double.parseDouble()将
String
转换为double
:对于您的情况,它看起来像你想要的:
当你需要int时,使用它将任何String数转换为double,只需将数据类型从num和num2转换为int;用英语:“Bader Qandeel”取得所有双重字符串的案例
再次引用Robertiano的引用 - 因为这是迄今为止最通用和本地化的自适应版本 . 值得一个完整的帖子!
另外一个选项:
还有另一种方式 .
Double是一个类,“temp”是一个变量 . “数字”是您要查找的最终数字 .
如果在将字符串解析为十进制值时遇到问题,则需要将数字中的“,”替换为“ . ” .
要将字符串转换回double,请尝试以下操作
parseDouble方法将实现所需的效果,Double.valueOf()方法也将如此 .
这应该将字符串aString转换为double d .
你只需 parse String values using Double
使用
new BigDecimal(string)
. 这将保证以后正确计算 .根据经验 - 总是使用
BigDecimal
进行像钱这样的敏感计算 .例: