hi
if I have this strings:
"abc" = false
"123" = true
"ab2" = false
Is there any command like IsNumeric or something else that can identify if string has numbers?
thank's in advance
|
|
|||||||
|
|
|
|
||||||||
|
|
|
This will return true if
If you just want to know if it has one or more numbers mixed in with characters, leave off the
Edit: Actually I think it is better than TryParse because a very long string could potentially overflow TryParse. |
||
|
|
|
|
Here is the C# method. Int.TryParse Method (String, Int32) |
||||
|
|
|
I've used several times this function;
But you can also use;
From Benchmarking IsNumeric Options
|
||||||
|
|
|
This is probably the best option in C#. If you want to know if the string contains a whole number (integer):
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 If you want to accept decimal numbers, the decimal class also has a |
||
|
|
|
In case you don't want to use int.Parse or double.Parse, you can roll your own with something like this:
|
||||||
|
|
|
|
||||||
|
|
|
bool Double.TryParse( string s, out double result ) |
||
|
|
|
|
If you want to know if a string is a number, you could always try parsing it:
Note that |
||
|
|
|
|
You can use TryParse to determine if the string can be parsed into an integer.
The boolean will tell you if it worked or not. |
||
|
|
|
|
You can always use the built in TryParse methods for many datatypes to see if the string in question will pass. Example.
Result would then = True
Result would then = False |
||
|