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

I would like to know what the easiest and shortest LINQ query is to return true if a string contains any number character in it.

Thanks Jobi Joy

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted
"abc3def".Any(c => char.IsDigit(c));

Update: as @Cipher pointed out, it can actually be made even shorter:

"abc3def".Any(char.IsDigit);
link|improve this answer
.ToCharArray() is not necessary. System.String implements IEnumerable<char>. – Mehrdad Afshari Oct 8 '09 at 21:33
@Mehrdad: Thanks for pointing that out; I tend to forget that string implements that interface – Fredrik Mörk Oct 8 '09 at 21:35
+1, I constantly forget about that particular overload of Any – JaredPar Oct 8 '09 at 21:35
2  
you could also use char.IsDigit as a method group. .Any(char.IsDigit) – Cipher Oct 8 '09 at 21:44
@Cipher: true, it does fit the signature. – Fredrik Mörk Oct 8 '09 at 21:47
feedback

Try this

public static bool HasNumber(this string input) {
  return input.Where(x => Char.IsDigit(x)).Any();
}

Usage

string x = GetTheString();
if ( x.HasNumber() ) {
  ...
}
link|improve this answer
1  
Or simply input.Any(x => Char.IsDigit(x)); – Mehrdad Afshari Oct 8 '09 at 21:33
@Mehrdad, yeah I constantly forget about that overload – JaredPar Oct 8 '09 at 21:35
feedback

Your Answer

 
or
required, but never shown

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