vote up 5 vote down star

hi

if I have this strings:

  1. "abc" = false

  2. "123" = true

  3. "ab2" = false

Is there any command like IsNumeric or something else that can identify if string has numbers?

thank's in advance

flag

31% accept rate
1  
You have a contradictions there -- #3 has numbers but you want it to be false. – Austin Salonen May 21 at 18:13
from their examples you can see they meant if the whole string represents a number. – Lucas May 21 at 18:32

11 Answers

vote up 24 vote down check
int n;
bool isNumeric = int.TryParse("123", out n);
link|flag
2  
Though, I would use double.TryParse, since we want to know if it represents a number at all. – John Gietzen May 21 at 18:31
Cool !! thank's !!! – Gold May 21 at 18:42
One caveat: TryParse could overflow if you have a very long string. If that's a possibility, regular expressions might be a better option (see my answer for an example). – jmgant May 22 at 2:47
vote up 3 vote down

This will return true if input is all numbers. Don't know if it's any better than TryParse, but it will work.

Regex.IsMatch(input, @"^\d+$")

If you just want to know if it has one or more numbers mixed in with characters, leave off the ^ + and $.

Regex.IsMatch(input, @"\d")

Edit: Actually I think it is better than TryParse because a very long string could potentially overflow TryParse.

link|flag
vote up 0 vote down

Here is the C# method. Int.TryParse Method (String, Int32)

link|flag
you could at least mention the method name in your answer... – Lucas May 21 at 18:55
method name specified! – Syed Tayyab Ali May 21 at 19:01
vote up 6 vote down

I've used several times this function;

public static bool IsNumeric(object Expression)
    {
    	bool isNum;
    	double retNum;

    	isNum = Double.TryParse(Convert.ToString(Expression), System.Globalization.NumberStyles.Any,System.Globalization.NumberFormatInfo.InvariantInfo, out retNum );
    	return isNum;
    }

But you can also use;

bool b1 = Microsoft.VisualBasic.Information.IsNumeric("1"); //true
bool b2 = Microsoft.VisualBasic.Information.IsNumeric("1aa"); // false

From Benchmarking IsNumeric Options

alt text

alt text

link|flag
referencing Microsoft.VisualBasic.dll from C# app? eww :P – Lucas May 21 at 18:44
I have no problem to use "IsNumeric" it works good. Also you can see that there's little efficience difference between TryParse and IsNumeric. Remember that TryParse is new in 2.0 and before then it was better to use IsNumeric that any other strategy. – nmiranda May 21 at 19:02
Well, VB.NET's IsNumeric() internally uses double.TryParse(), after a number of gyrations that are needed (among other things) for VB6 compatibility. If you don't need compatibility, double.TryParse() is just as simple to use, and it saves you from wasting memory by loading Microsoft.VisualBasic.dll in your process. – Euro Micelli May 21 at 20:06
vote up 3 vote down

This is probably the best option in C#.

If you want to know if the string contains a whole number (integer):

string someString;
// ...
int myInt;
bool isNumerical = int.TryParse(someString, out myInt);

The TryParse method will try to convert the string to a number (integer) and if it succeeds it will return true and place the corresponding number in myInt. If it can't, it returns false.

Solutions using the int.Parse(somString) alternative shown in other responses works, but it is much slower because throwing exceptions is very expensive. TryParse(...) was added to the C# language in version 2, and until then you didn't have a choice. Now you do: you should avoid the Parse() alternative.

If you want to accept decimal numbers, the decimal class also has a .TryParse(...) method. Replace int with decimal in the above discussion, and the same principles apply.

link|flag
+1 for mentioning Parse() vs TryParse() – Lucas May 21 at 18:44
vote up 3 vote down

In case you don't want to use int.Parse or double.Parse, you can roll your own with something like this:

public static class Extensions
{
    public static bool IsNumeric(this string s)
    {
        foreach (char c in s)
        {
            if (!char.IsDigit(c) && c != '.')
            {
                return false;
            }
        }

        return true;
    }
}
link|flag
you might as well return s.All(c => c.IsDigit(c) || c == '.'), but... – Lucas May 21 at 18:42
What if they meant integers only? What about locales where '.' is the group separator, not the comma (e.g. pt-Br)? what about negative numbers? group separators (commas in English)? currency symbols? TryParse() can manage all of these as required using NumberStyles and IFormatProvider. – Lucas May 21 at 18:43
Ooh yeah, I like the All version better. I've never actually used that extension method, good call. Although it should be s.ToCharArray().All(..). As for your second point, I hear ya, which is why I prefaced with if you don't want to use int.Parse.... (which I'm assuming has more overhead...) – BFree May 21 at 19:03
vote up 1 vote down
if (Regex.Match("ab1", @".*([\d]+).*"))
{}
link|flag
This is the only comment I saw that answered if a string CONTAINS numbers. – Chad Ruppert May 21 at 18:24
You want IsMatch() which return bool, not Match(). Also your regex would return true for your example "ab1" and their example #3 "ab2", which is not what they want. – Lucas May 21 at 18:30
@Lucas - ahh, you're absolutely right. It's ".IsMatch". And yea, I guess he wants to return "true" only if it's a pure number and not mixed content. It wouldn't be that hard to adjust the regex for that, but out of curiousity, does anyone have performance insights on using regex vs int32.parse? – marduk May 21 at 20:02
vote up 1 vote down

bool Double.TryParse( string s, out double result )

link|flag
vote up 2 vote down

If you want to know if a string is a number, you could always try parsing it:

var numberString = "123";
int number;

int.TryParse(numberString , out number);

Note that TryParse returns a bool, which you can use to check if your parsing succeeded.

link|flag
vote up 2 vote down

You can use TryParse to determine if the string can be parsed into an integer.

int i;
bool bNum = int.TryParse(str, out i);

The boolean will tell you if it worked or not.

link|flag
vote up 4 vote down

You can always use the built in TryParse methods for many datatypes to see if the string in question will pass.

Example.

Result = decimal.tryparse("123", myDec)

Result would then = True

Result = decimal.tryparse("abc", mydec)

Result would then = False

link|flag
I think I may have done that more in VB style syntax than C#, but the same rules apply. – TheTXI May 21 at 18:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.