检查子串是否出现在给定字符串中的 C# 程序
使用 C# 中的 contains() 方法来检查一个给定的字符串中是否存在子字符串。
让我们假设字符串为 −
United
在字符串内,你需要找到子字符串“Uni”。为此,使用 contains 方法,并像下列代码片段一样使用它 −
res = str1.Contains(str2);
示例
你可以尝试运行以下代码来在字符串中找到子字符串。
using System; public class Demo { public static void Main() { string str1 = "United", str2 = "Uni"; bool res; res = str1.Contains(str2); if (res) Console.Write("The substring " + str2 + " is in the string " + str1); else Console.Write("The substring " + str2 + " is not in the string " + str1); } }
输出
The substring Uni is in the string United
广告