how to check in string whether it has certain chars in the string in c# code example
Example 1: c# check if char is string
if (abc.ToLower().IndexOf('s') != -1) { }
Example 2: c# check characters in string
errorCounter = Regex.Matches(yourstring,@"[a-zA-Z]").Count;