How can I convert a String such as \"12.34\" to a double in Java?
String
\"12.34\"
double
If you have problems in parsing string to decimal values, you need to replace "," in the number to "."
String number = "123,321"; double value = Double.parseDouble( number.replace(",",".") );