vote up 4 vote down star

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

flag

50% accept rate

2 Answers

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

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

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

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|flag
1  
Or simply input.Any(x => Char.IsDigit(x)); – Mehrdad Afshari Oct 8 at 21:33
@Mehrdad, yeah I constantly forget about that overload – JaredPar Oct 8 at 21:35

Your Answer

Get an OpenID
or

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