我有这个字符串列表。我只想过滤掉那些与我搜索的关键字完全匹配的项目。例如,我有关键字“in”,我希望结果只过滤那些具有确切单词“in”的项目。请帮忙。
代码
static IEnumerable<string> GetData()
{
var strList = new List<string>
{ "I'm in love",
"Coffee contains caffeine",
"The best inn so far",
"Inside of me",
"in the darkness"};
var filteredItems = strList.Where(x => x.Contains("in"));
return filteredItems;
}
从我的列表中,我只想返回项目 1 和项目 5,因为它们是具有确切单词“in”的项目。