I am having an string like this
string str = "dfdsfdsf8fdfdfd9dfdfd4"
I need to check whether the string contains number by looping through the array.
|
|
|
|
|
|
|
What about a regular expression:
|
||
|
|
|
|
If you are looking for an integer value you could use int.TryParse:
For checking a decimal number, replace int.TryParse with Decimal.TryParse. Check out this blog post and comments "Why you should use TryParse() in C#" for details. If you need decimal numbers, you could alternatively use this regular expression:
And finally another alternative (if you are not religiously against VB.NET), you could use the method in the Microsoft.VisualBasic namespace:
|
|||
|
|
|
|
If you're going to loop through the string, DON'T use int.TryParse... that's way too heavy. Instead, use char.IsNumber(); example:
|
||
|
|
|
|
You could use a Regular Expression for that. |
||
|
|
|
|
If you're a linq junkie like me, you'd do it this way
|
||
|
|
|
in C# 2.0, try this:
|
||
|
|