如何在字符串中搜索单词?我有一个文本框,用户在其中插入一个字符串,另一个在文本框上插入一些随机文本。regex
除了使用and之外,还有其他替代方法IndexOf
吗?就像使用 afor loop
并检查单词中的长度和字符一样。
这是我到目前为止尝试过的
int i = 0;
int count = 0;
input2.Trim();
while ((i = input2.IndexOf(input1, i)) != -1)
{
i = i + input1.Length;
count++;
}
MessageBox.Show(count.ToString() + " Matches Found");