报告指定 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 )
新闻热点
疑难解答