How to check if a String contains any letter from a to z? [duplicate] March 3, 2023 by Tarik What about: //true if it doesn't contain letters bool result = hello.Any(x => !char.IsLetter(x));