如何在 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!

更新于: 2020 年 6 月 22 日

16K+ 观看

开启您的 职业生涯

完成课程,获得认证

开始
广告