System.String.IndexOf 方法 (String, Int32)
方法描述
报告指定字符串在此实例中的第一个匹配项的索引。 该搜索从指定字符位置开始。
语法定义(C# System.String.IndexOf 方法 (String, Int32) 的用法)
public int IndexOf( string value, int startIndex )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
value | System-String | 要搜寻的字符串。 |
startIndex | System-Int32 | 搜索起始位置。 |
返回值 | System.Int32 | 如果找到该字符串,则为 value 的从零开始的索引位置;如果未找到该字符串,则为 -1。 如果 value 为 String.Empty,则为 startIndex。 |
提示和注释
索引编号从零开始。 startIndex 参数的范围可以从 0 到字符串实例的长度减一。
此方法使用当前区域性执行单词(区分大小写和区域性)搜索。 该搜索从此实例的 startIndex 字符位置开始,一直搜索到最后一个字符位置。
对调用者的说明
如 在 .NET Framework 中使用字符串的最佳做法 中所述,我们建议您避免调用替换默认值的字符串比较方法,而是调用需要显式指定参数的方法。 若要使用当前区域性的比较规则查找在特定字符位置后出现的子字符串的第一个索引,请为它的 comparisonType 参数使用 StringComparison.CurrentCulture 的值调用 IndexOf(String, Int32, StringComparison) 方法重载。
System.String.IndexOf 方法 (String, Int32)例子
下面的示例将在目标字符串中搜索指定字符串的所有匹配项。
using System; public class IndexOfTest { public static void Main() { string strSource = "This is the string which we will perform the search on"; Console.WriteLine("The search string is:{0}\"{1}\"{0}", Environment.NewLine, strSource); string strTarget = ""; int found = 0; int totFinds = 0; do { Console.Write("Please enter a search value to look for in the above string (hit Enter to exit) ==> "); strTarget = Console.ReadLine(); if (strTarget != "") { for (int i = 0; i < strSource.Length; i++) { found = strSource.IndexOf(strTarget, i); if (found > 0) { totFinds++; i = found; } else break; } } else return; Console.WriteLine("{0}The search parameter '{1}' was found {2} times.{0}", Environment.NewLine, strTarget, totFinds); totFinds = 0; } while ( true ); } }
异常
异常 | 异常描述 |
---|---|
ArgumentNullException | value 为 null。 |
ArgumentOutOfRangeException |
|
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。