如何在 C# 中检查字符串中是否包含某个单词?
使用 Contains() 方法检查字符串是否包含某个单词。
设置字符串 −
string s = "Together we can do so much!";
现在假设你需要查找单词“much”
if (s.Contains("much") == true) { Console.WriteLine("Word found!"); }
让我们看看完整的代码 −
示例
using System; public class Demo { public static void Main() { string s = "Together we can do so much!"; if (s.Contains("much") == true) { Console.WriteLine("Word found!"); } else { Console.WriteLine("Word not found!"); } } }
输出
Word found!
广告