How can I convert a String such as \"12.34\" to a double in Java?
String
\"12.34\"
double
String s = "12.34"; double num = Double.valueOf(s);