在C#中搜索字符串可以使用IndexOf
方法或者Contains
方法。
- 使用
IndexOf
方法:
string str = "Hello, world!"; int index = str.IndexOf("world"); if(index != -1) { Console.WriteLine("String found at index: " + index); } else { Console.WriteLine("String not found"); }
- 使用
Contains
方法:
string str = "Hello, world!"; if(str.Contains("world")) { Console.WriteLine("String found"); } else { Console.WriteLine("String not found"); }
这两种方法都可以用来搜索字符串,并返回相应的结果。