我有一个清单,如下所示。
List<string> Animallist = new List<string>();
Animallist.Add("cat");
Animallist.Add("dog");
Animallist.Add("lion and the mouse");
Animallist.Add("created the tiger");
我有一个输入文本框
“不要责怪上帝创造了老虎,而是感谢他没有给它翅膀”
我想查看文本框中的哪些单词与列表中的项目匹配并在控制台上打印列表。搜索必须不区分大小写。即文本框中的TIGER 应该与列表中的tiger 匹配。
在上面的例子中,“created the tiger”将打印在控制台上。