ID:157531
 
How do you accurately convert number strings like 1e+007?
num2text()
In response to Super Saiyan X
More specifically

num2text(number,12)

Which would display the number up to 12 digits. Just using num2text(1e+007) would display "1e+007" since it is greater than the default 6 sigfigs
In response to Gunbuddy13
Thanks