up vote 10 down vote favorite
4
share [g+] share [fb]

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

link|improve this question

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

11 Answers

up vote 36 down vote accepted
int n;
bool isNumeric = int.TryParse("123", out n);
link|improve this answer
3  
Though, I would use double.TryParse, since we want to know if it represents a number at all. – John Gietzen May 21 '09 at 18:31
Cool !! thank's !!! – Gold May 21 '09 at 18:42
3  
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). – John M Gant May 22 '09 at 2:47
If you know your string is a bit too long for int, use Int64.TryParse. – Sam Sep 2 '10 at 15:06
feedback

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|improve this answer
Building the regex once and for all would be much more efficient, though. – CFP Jan 5 '11 at 17:30
feedback

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|improve this answer
2  
referencing Microsoft.VisualBasic.dll from C# app? eww :P – Lucas May 21 '09 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 '09 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 '09 at 20:06
Quick note: using a regular expression will be much faster if you manage to have the underlying finite-state machine built once and for all. Generally, building the state machine takes O(2^n) where n is the length of the regex, whereas reading is O(k) where k is the length of the string being searched. So rebuilding the regex every time introduces a bias. – CFP Jan 5 '11 at 17:29
feedback

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|improve this answer
you might as well return s.All(c => c.IsDigit(c) || c == '.'), but... – Lucas May 21 '09 at 18:42
1  
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 '09 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 '09 at 19:03
1  
1.3.3.8.5 is not really a number, though, while 1.23E5 is. – CFP Jan 5 '11 at 17:31
feedback

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|improve this answer
I think I may have done that more in VB style syntax than C#, but the same rules apply. – TheTXI May 21 '09 at 18:10
feedback

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|improve this answer
+1 for mentioning Parse() vs TryParse() – Lucas May 21 '09 at 18:44
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback
if (Regex.Match("ab1", @".*([\d]+).*"))
{}
link|improve this answer
This is the only comment I saw that answered if a string CONTAINS numbers. – Chad Ruppert May 21 '09 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 '09 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? – gehsekky May 21 '09 at 20:02
.* at the beginning and the end of your test query is unnecessary. @marduk: if you rebuild your regex every time, you'll end up with something pretty inefficient. – CFP Jan 5 '11 at 17:34
feedback

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

link|improve this answer
you could at least mention the method name in your answer... – Lucas May 21 '09 at 18:55
method name specified! – Syed Tayyab Ali May 21 '09 at 19:01
feedback

Your Answer

 
or
required, but never shown

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