如何找到一個字符串數組是否包含字符串的某些部分? 我有這樣C#數組包含部分
String[] stringArray = new [] { "[email protected]", "[email protected]", "@gmail.com" };
string str = "[email protected]"
if (stringArray.Any(x => x.Contains(str)))
{
//this if condition is never true
}
陣列我想運行此如果塊時STR包含字符串多數民衆贊成完全或任何陣列的項目的一部分。
看到使用我的更新代碼的片段,但它不工作。 – coure2011 2010-07-23 16:30:48
喬恩的代碼在這裏工作得很好。你從你的例子中錯過了一些東西。 – 2010-07-23 16:34:56
請立即結帳我更新的代碼。 – coure2011 2010-07-23 18:13:42