在段落中查找特定关键字

Finding a specific keyword in a paragraph

我试过了,但它与数组中的字符串不匹配。
注意。我不想使用正则表达式。

string pgraph = ("i love zaiby and zaiby is my best friend");
string word = ("zaiby");
string[] singleword = pgraph.Split();
bool findword = singleword.Equals(word);

if (findword == true)
{
    Console.Write("keyword founded");
}
else
{
    Console.Write("keyword not founded");
}

您正在将一个字符串数组与一个字符串进行比较。
尝试以下行而不是 singleword.Equals 行:

bool findword = singleword.Any(w => w.Equals(word));