WPFにおけるストリングの数え方
イベント(Btn_Click)で、文字の中に対象の言葉や文字などを数えるには?
下記のような方法をよく見かけるのですが、static int となっているためか、ボタンとの連動はできるのでしょうか。
static int countOccurences(string str, string word)
{
// split the string by spaces
string[] a = str.Split(' ');
// search for pattern in string
int count = 0;
for (int i = 0; i < a.Length; i++)
{
// if match found increase count
if (word.Equals(a[i]))
count++;
}
return count;
}