在C#中,可以使用Contains
方法来检查字符串是否包含指定的子字符串。下面是一些使用Contains
方法的技巧:
- 检查字符串是否包含某个子字符串:
string str = "Hello World"; if (str.Contains("Hello")) { Console.WriteLine("字符串包含'Hello'"); }
- 忽略大小写检查字符串是否包含某个子字符串:
string str = "Hello World"; if (str.IndexOf("hello", StringComparison.OrdinalIgnoreCase) >= 0) { Console.WriteLine("字符串包含'hello'(忽略大小写)"); }
- 在集合中检查是否包含某个元素:
Listlist = new List { "apple", "banana", "orange" }; if (list.Contains("apple")) { Console.WriteLine("集合包含'apple'"); }
- 自定义比较器检查是否包含某个元素:
Listlist = new List { "apple", "banana", "orange" }; if (list.Contains("APPLE", StringComparer.OrdinalIgnoreCase)) { Console.WriteLine("集合包含'APPLE'(忽略大小写)"); }
这些是一些使用Contains
方法的常见技巧,可以根据具体情况进行调整和扩展。