Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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) {
...                                
}
share|improve this question
3  
What precisely do you mean the "first element of a string"? the first character? or...? – Marc Gravell Feb 8 at 10:01
What have you tried? – The_Cthulhu_Kid Feb 8 at 10:01
@The_Cthulhu_Kid he gave the code snippet, what else do you expect? – Vlad L Feb 8 at 10:04
"First Element" is not defined. We can't answer the question accurately without an accurate definition of "first element". – Matthew Watson Feb 8 at 10:06
@VladL That isn't something he has tried, it is a suggestion. He is asking for code. – The_Cthulhu_Kid Feb 8 at 10:20

8 Answers

up vote 6 down vote accepted

You can try with this:

string s = "1sdfa";
bool isDigit = char.IsDigit(s[0]);

Also, if you wanted additional checks on string, you could do them like this:

bool isDigit = !string.IsNullOrEmpty(s) && char.IsDigit(s[0]);
share|improve this answer
That returns true for "1.1" which is clearly not a positive integer (if "first element" doesn't just mean "first character") – Matthew Watson Feb 8 at 10:04
1  
As I understood, the first element meant first character... – Ivan G Feb 8 at 10:06
I'd use bool isDigit = s.Length > 0 && char.IsDigit(s[0]); if it's indeed the first char he meant. – Joachim Isaksson Feb 8 at 10:07
Yeah, I'm waiting for the OP to clarify... Since "positive integer" is an odd term to use if you're just talking about a single character. – Matthew Watson Feb 8 at 10:07
@JoachimIsaksson Thanks, I added the check. – Ivan G Feb 8 at 10:10

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.

share|improve this answer
+1 for super assumption – andy Feb 8 at 10:02
depends a bit on culture, though ;p – Marc Gravell Feb 8 at 10:02
what if str = "a234" – daryal Feb 8 at 10:04
@daryal: then "first element of a string" even not a number? – sll Feb 8 at 10:05
1  
@sll then checking whether the first element is not "-" is not enough? – daryal Feb 8 at 10:08

Can use Char.IsDigit

Char.IsDigit(str[0])
share|improve this answer

You should use Char.IsDigit() method.

Indicates whether the specified Unicode character is categorized as a decimal digit.

Like;

string str = "2001";
if (Char.IsDigit(str[0]))
{
    Console.WriteLine ("Positive digit");
}
else
{
    Console.WriteLine ("Not digit");
}

Here is a DEMO.

share|improve this answer
@MatthewWatson OP wants to see if the first char of string is positive digit or not. That's the question. – Soner Gönül Feb 8 at 10:08

You can use char.IsDigit method to check if the first character is a digit or not.

if(char.IsDigit(str[0]))
    Console.WriteLine("Starting character is positive digit");
else
    Console.WriteLine("Starting character is not a digit");

Its better if you can check the length of the string before accessing its index 0

share|improve this answer
if(Char.IsDigit(str.First()))
{
}
share|improve this answer
string str = "2001";

if (char.IsDigit(str.First())
{
   if(Convert.toInt32(str.First().ToString()) >= 0)
   {
     // positive integer
   }
}
share|improve this answer

hello u can use this...

string something = "some string";
bool isDigit = char.IsDigit(something[0]);
share|improve this answer
awesome EXPLANATION :D – Neel Bhatt Feb 8 at 10:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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