首页 > 编程 > C# > 正文

C#中字符串操作函数String.IndexOf (Char)方法

2023-05-03 13:32:44
字体:
来源:转载
供稿:网友

报告指定 Unicode 字符在此字符串中的第一个匹配项的索引。其原型为:

public int IndexOf(char value)

参数value为要查找的 Unicode 字符。

返回值:如果找到该字符,则为 value 的从零开始的索引位置;如果未找到,则为 -1。

如:

string str = "武林网VEVB。";
        int iPos = str.IndexOf('I');

其返回值为:3

同时,IndexOf方法还有其它8种重载形式:

(1)public int IndexOf(string value)

(2)public int IndexOf(char value, int startIndex)

(3)public int IndexOf( string value, int startIndex)

(4)public int IndexOf(string value,StringComparison comparisonType )

(5)public int IndexOf(char value, int startIndex,int count )

(6)public int IndexOf(string value,int startIndex,int count )

(7)public int IndexOf(string value,int startIndex,StringComparison comparisonType )

(8)public int IndexOf(string value,int startIndex,int count, StringComparison comparisonType )

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表