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
| |||||||
feedback
|
|
It is a floating point number, you have to tell it that:
| |||
|
feedback
|
|
It works if you specify
I'm not entirely sure why this isn't supported by default - the default is to use | |||
|
feedback
|
| ||||
|
feedback
|
|
In addition to specifying the NumberStyles I would recommend that you use the decimal.TryParse function such as:
As an alternative to NumberStyles.Any you could use a specific set if you're certain of your formats. e.g:
| |||
|
feedback
|