有时我们可能要判断一个字符串中是否要包含指定的字符串,或者是判断一个字符串从指定位置开始是否包含指定的子字符串,这分别可以借助IndexOf(string value)方法和IndexOf(string value, int startIndex)方法来实现。
IndexOf(string value)方法在前面的文章中已探讨(http://www.VeVb.com/article/Csharp/jichu/2012/5669.html),本文重点探讨IndexOf(string value,int startIndex)的使用。
IndexOf(string value, int startIndex)是从指定位置startIndex开始搜索字符串value的位置。该重载函数有两个参数,第一个参数value是要搜索的子字符串,startIndex是要搜索的起始位置。
IndexOf(string value,int startIndex)方法的返回值为int型,如果字符串中包含value值,则返回第一次找到value的位置值(该值从0开始计算),否则返回-1。
该方法在搜索子字符串时时区分大小写和区域性的。
IndexOf(string value, int startIndex)方法的一个例子如下:
string str = "武林网VEVB,你我共同的乐园。";
int iPos = str.IndexOf("乐园", 7);
上面这个例子的返回值为:13
IndexOf方法有9种重载形式,其它8种分别如下:
(1)public int IndexOf(char value)
(2)public int IndexOf(string value)
(3)public int IndexOf( char 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 )
新闻热点
疑难解答