What's the proper way to convert from a scientific notation string such as "1.234567E-06" to a floating point variable using C#?

link|improve this question
feedback

3 Answers

up vote 23 down vote accepted
Double.Parse("1.234567E-06", System.Globalization.NumberStyles.Float);
link|improve this answer
Right on Will. Thx. – odbasta Sep 15 '08 at 17:11
feedback

Also consider using

Double.TryParse("1.234567E-06", System.Globalization.NumberStyles.Float, out MyFloat);

This will ensure that MyFloat is set to value 0 if, for whatever reason, the conversion could not be performed. Or you could wrap the Double.Parse() example in a Try..Catch block and set MyFloat to a value of your choosing when an exception is detected.

link|improve this answer
5  
You don't want to rely on MyFloat being 0 to indicate a failed conversion, you want to rely on the bool return value. – Carl Oct 21 '08 at 8:55
feedback

Can I also add that you should use Double.TryParse. Convert.ToDouble will throw an exception for scientific notation, since you can't specify the number style

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.