-3

我正在尝试在没有包含方法的情况下检查一个“错误”字符范围内的相似单词的文本,以便:“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)
    }
}
4

4 回答 4

1

这会做你不想要的,但我仍然认为 SpellCheck 库将是要走的路

string wordToFind = "cat";
string sentance = "the cat is here with the cagt";
int count = 0;

foreach (var word in sentance.Split(' '))
{
    if (word.Equals(wordToFind, StringComparison.OrdinalIgnoreCase))
    {
        count++;
        continue;
    }
    foreach (var chr in word)
    {
        if (word.Replace(chr.ToString(), "").Equals(wordToFind, StringComparison.OrdinalIgnoreCase))
        {
            count++;
        }
    }
}

// returns 2
于 2013-01-06T08:19:23.157 回答
0

可能,您可以使用正则表达式进行查找匹配。

正则表达式类 MSDN

C# 正则表达式

30 分钟正则表达式教程

于 2013-01-06T08:13:15.360 回答
0

这是简单而正确但缓慢的:

static bool EqualsExceptOneExtraChar(string goodStr, string strWithOneExtraChar)
{
  if (strWithOneExtraChar.Length != goodStr.Length + 1)
    return false;
  for (int i = 0; i < strWithOneExtraChar.Length; ++i)
  {
    if (strWithOneExtraChar.Remove(i, 1) == goodStr)
      return true;
  }
  return false;
}
于 2013-01-06T09:22:04.840 回答
0

正则表达式可能是最好的解决方案。但也试试这个。

String str = yourstring;
String s1 = 'cat';
 int cat1 = yourstring.IndexOf(s1,0); 
于 2013-01-06T07:54:16.667 回答