if (abc.ToLower().IndexOf('s') != -1) { }
errorCounter = Regex.Matches(yourstring,@"[a-zA-Z]").Count;
//true if it doesn't contain letters bool result = hello.Any(x => !char.IsLetter(x));