IndexOf(char value,int startIndex)函数是IndexOf重载函数形式之一,其从指定的startIndex位置开始查找指定的字符value,如果字符串中包含value值,则返回其第一次出现的位置(该位置从索引0开始)。该函数的原型为:
public int IndexOf( char value, int startIndex )
参数:
value就是要查找的字符,startIndex就是搜索的起始位置。
返回值:
该函数的返回值为整型(int)。如果找到该字符,则返回值为value 的从零开始的索引位置;如果未找到,则返回值为 -1。
此方法执行顺序搜索,即仅当 Unicode 标量值相同时两个字符才被视为相等。
举例如下:
string str = "武林网VEVB,你我共同的乐园。";
int iPos = str.IndexOf(7,'乐');
这个例子中,iPos的值为13,而不是5,原因是指定了搜索的起始位置为7,即从位置7后开始搜索相应的字符。
该函数还有其它8种重载形式:
(1)public int IndexOf(char value)
(2)public int IndexOf(string value)
(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 )
新闻热点
疑难解答