I need help converting a string that contains a number in scientific notation to a double.
Example strings: "1.8281e-009" "2.3562e-007" "0.911348"
I was thinking about just breaking the number into the number on the left and the exponent and than just do the math to generate the number; but is there a better/standard way to do this?
work with 0.000077240388
I tried the +1,-1,/1 solution but that was not sufficient without rounding the number afterwards using round($a,4) or similar