long.Parse() C#
Asked Answered
A

2

12

How would I convert a string, say "-100,100", to long in C#.

I currently have a line of code which is

long xi = long.Parse(x, System.Globalization.NumberStyles.AllowThousands);

but this breaks when x is "a negative number".

My approach:

long xi = long.Parse("-100,253,1", 
System.Globalization.NumberStyles.AllowLeadingSign & System.Globalization.NumberStyles.AllowThousands);

was wrong, as it broke.

Amarelle answered 23/5, 2012 at 7:42 Comment(0)
M
11

give this a go:

long xi = long.Parse(x, System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.AllowLeadingSign);

It may well be because you are declaring flags you may need to declair all possible flags that will be hit. I've just confirmed this code as working in a test project using your given string value in the question. Let me know if it meets your requirements. When declaring multiple flags in a single parameter use | instead of &

edit: http://msdn.microsoft.com/en-us/library/cc138362.aspx Find an explination of the different bitwise operators under the "Enumeration Types as Bit Flags" heading (That was harder to find than i thought.)

Minnick answered 23/5, 2012 at 7:45 Comment(0)
A
7

I would use TryParse instead of Parse, in order to avoid exceptions, i.e.:

long xi;
if (long.TryParse(numberString, System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.AllowLeadingSign, null, out xi))
    {
        // OK, use xi
    }
    else
    {
        // not valid string, xi is 0
    }
Airlike answered 23/5, 2012 at 7:59 Comment(1)
Slight typo on your "Parse" should be "TryParse", otherwise better answer. Shame I didnt feel the need to point out TryParse to him.Minnick

© 2022 - 2024 — McMap. All rights reserved.