c# indexof 查找不区分大小写

方法1

string str=”AbcdEFG”;

str.IndexOf(“abc”, StringComparison.OrdinalIgnoreCase);

方法2

字符串的 IndexOf 方法是对大小写敏感的.幸运的是,这个Globalization 命名空间下包含CompareInfo类,它包含一个对大小写不敏感的 IndexOf 方法. 例如:

using System.Globalization;c# indexof 查找不区分大小写

c# indexof 查找不区分大小写    string s1 = “C# is a GREAT programming language.”;

c# indexof 查找不区分大小写    string s2 = “Great”;

c# indexof 查找不区分大小写    CompareInfo Compare = CultureInfo.InvariantCulture.CompareInfo;

c# indexof 查找不区分大小写    int i = Compare.IndexOf( s1, s2, CompareOptions.IgnoreCase );

给TA打赏
共{{data.count}}人
人已打赏
C#

C# 基础课程的完成

2020-4-6 3:56:38

C#

C# 绑定数据源后无法取出数据

2020-4-12 18:59:13

各类网站开发

站长微信 710 342 444 或者扫一扫右侧二维码。
    0 条回复 A文章作者 M管理员
      暂无讨论,说说你的看法吧
    个人中心
    购物车
    优惠劵
    今日签到
    有新私信 私信列表
    搜索