Search code examples
c#.netnumber-formattingexponent

Parse a Number from Exponential Notation


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


Solution

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

    decimal d = Decimal.Parse("1.2345E-02", System.Globalization.NumberStyles.Float);