How to check first character of a string if a letter, any letter in C# June 6, 2023 by Tarik Try the following string str = ...; bool isLetter = !String.IsNullOrEmpty(str) && Char.IsLetter(str[0]);