How to check if a String contains any letter from a to z? [duplicate]

What about:

//true if it doesn't contain letters
bool result = hello.Any(x => !char.IsLetter(x));

Leave a Comment