I need to check if the first element of a string is positive integer in C#. is there a smart Way to do this? Fx
string str = "2001";
if (str.First() == isANumber) {
...
}
|
|
You can try with this:
Also, if you wanted additional checks on string, you could do them like this:
|
|||||||||||||
|
|
I believe if no sign then it is positive? So just check whether the first sybmol is not EDIT: As Mark noted in a comment below - it may depend on a culture which is used. |
|||||||||||||
|
|
Can use Char.IsDigit
|
|||
|
|
|
You should use
Like;
Here is a |
||||
|
|
You can use char.IsDigit method to check if the first character is a digit or not.
Its better if you can check the length of the string before accessing its index |
||||
|
|
|
|||
|
|
|
hello u can use this...
|
|||
|
|