C# String.Contains忽略大小写
2020-12-26 03:28
标签:代码生成 code title source stat 代码生成器 一个 区分大小写 toc 最近做一个代码生成器的时候 才发现。 所以忽略的办法是: 方法二:封装起来 C# String.Contains忽略大小写 标签:代码生成 code title source stat 代码生成器 一个 区分大小写 toc 原文地址:https://www.cnblogs.com/zxs-onestar/p/13385345.html
C# 让String.Contains 默认是区分大小写的。
方法一: string title = "STRING"; bool contains = title.IndexOf("string", StringComparison.OrdinalIgnoreCase) >= 0;
public static bool Contains(this string source, string toCheck, StringComparison comp) { return source.IndexOf(toCheck, comp) >= 0; }
文章标题:C# String.Contains忽略大小写
文章链接:http://soscw.com/index.php/essay/38259.html