I need to parse the string "1.2345E-02" (a number expressed in exponential notation) to a decimal data type, but Decimal.Parse("1.2345E-02") simply throws an error

link|improve this question

4  
I'll assume you're using double quotes, otherwise it won't compile. So, what is the error? – R. Martinho Fernandes Oct 7 '10 at 7:22
Apologies, swapping between too many languages - correct, the string is "1.2345E-02" – Jimbo Oct 7 '10 at 7:26
feedback

4 Answers

up vote 9 down vote accepted

It is a floating point number, you have to tell it that:

decimal d = Decimal.Parse("1.2345E-02", System.Globalization.NumberStyles.Float);
link|improve this answer
feedback

It works if you specify NumberStyles.Float:

decimal x = decimal.Parse("1.2345E-02", NumberStyles.Float);
Console.WriteLine(x); // Prints 0.012345

I'm not entirely sure why this isn't supported by default - the default is to use NumberStyles.Number, which uses the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowTrailingSign, AllowDecimalPoint, and AllowThousands styles. Possibly it's performance-related; specifying an exponent is relatively rare, I suppose.

link|improve this answer
feedback
    static void Main(string[] args)
    {
        decimal d = Decimal.Parse("1.2345E-02",
                                  System.Globalization.NumberStyles.Float);

    }
link|improve this answer
feedback

In addition to specifying the NumberStyles I would recommend that you use the decimal.TryParse function such as:

decimal result;
if( !decimal.TryParse("1.2345E-02", NumberStyles.Any, CultureInfo.InvariantCulture, out result) )
{
     // do something in case it fails?
}

As an alternative to NumberStyles.Any you could use a specific set if you're certain of your formats. e.g:

NumberStyles.AllowExponent | NumberStyles.Float
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.