How do I prevent the code below from throwing a FormatException. I'd like to be able to parse strings with a leading zero into ints. Is there a clean way to do this?
string value = "01";
int i = int.Parse(value);
|
|
|||||
|
|
|
Your code runs for me, without a
But this does ring an old bell; a problem I had years ago, which Microsoft accepted as a bug against localization components of Windows (not .NET). To test whether you're seeing this, run this code and let us know whether you get a FormatException:
EDIT: here's my post from Usenet, from back in 2007. See if the symptoms match yours.
...and here's a report on Microsoft Connect about the issue: |
|||
|
|
|
Try
|
||
|
|
|
|
You don't have to do anything at all. Adding leading zeroes does not cause a FormatException. To be 100% sure I tried your code, and after correcting Obviously you are not showing actual code that you are using, so it's impossible to say where the problem is, but it's definitely not a problem for the |
||
|
|
|
|
|
||
|
|
|
|
TryParse will allow you to confirm the result of the parse without throwing an exception. To quote MSDN
To use their example
} |
||
|
|
|
|
Try
Edit: Hmm. As pointed out, it's just wrapping Int32.Parse. Not sure why you're getting the FormatException, regardless. |
||||||||||||||
|