count number of specific character in c# code example
Example 1: find character from string c# count
int count = Regex.Matches(test, "word").Count;
Example 2: how to count letters in c#
int numberOfLetters = yourWord.Length;
int count = Regex.Matches(test, "word").Count;
int numberOfLetters = yourWord.Length;