我有一个字符串列表
string[] arr = new string[] { "hello world", "how are you", "what is going on" };
我需要检查我给出的字符串是否使用了其中一个字符串中的每个单词arr
所以假设我有
string s = "hello are going on";
这将是一个匹配,因为所有单词s
都在一个字符串中arr
string s = "hello world man"
这个不匹配,因为“man”不在任何字符串中arr
我知道如何编写一个“更长”的方法来做到这一点,但是我可以编写一个不错的 linq 查询吗?