我正在尝试在没有包含方法的情况下检查一个“错误”字符范围内的相似单词的文本,以便:“cat”= *cat,c*at,ca*t,cat*。我的代码是。
这是一个例子:
string s = "the cat is here with the cagt";
int count;
string[] words = s.Split(' ');
foreach (var item in words)
{
if(///check for "cat")
{
count++;
return count; (will return 2)
}
}