C# 程序在字符串数组中搜索字符串
使用 Linq Contains() 方法在字符串数组中搜索特定字符串。
string[] arr = { "Bag", "Pen", "Pencil"};
现在,将字符串添加到字符串变量中,即你要搜索的字符串。
string str = "Pen";
使用 Contains() 方法搜索上述字符串。
arr.AsQueryable().Contains(str);
我们来看看整个示例。
示例
using System; using System.Linq; using System.Collections.Generic; class Demo { static void Main() { string[] arr = { "Bag", "Pen", "Pencil"}; string str = "Pen"; bool res = arr.AsQueryable().Contains(str); Console.WriteLine("String Pen is in the array? "+res); } }
输出
String Pen is in the array? True
广告