C# String.IndexOf()方法怎么使用

c#
1283
2023/10/25 14:52:16
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

C#中的String.IndexOf()方法用于在字符串中查找指定字符或子字符串的第一个匹配项,并返回其索引位置。该方法有多种重载形式,可以根据不同的需求使用。

以下是常见的使用方式:

  1. 查找单个字符的索引位置:
string str = "Hello World";
int index = str.IndexOf('o');
Console.WriteLine(index); // 输出:4
  1. 查找子字符串的索引位置:
string str = "Hello World";
int index = str.IndexOf("World");
Console.WriteLine(index); // 输出:6
  1. 指定开始搜索的索引位置:
string str = "Hello World";
int index = str.IndexOf('o', 5); // 从索引位置为5的字符开始搜索
Console.WriteLine(index); // 输出:7
  1. 指定搜索的范围:
string str = "Hello World";
int index = str.IndexOf("World", 0, 6); // 从索引位置为0到5的子字符串范围内搜索
Console.WriteLine(index); // 输出:-1,未找到匹配项

需要注意的是,如果未找到匹配项,则IndexOf()方法会返回-1。如果要查找多个匹配项的索引位置,可以使用循环结合IndexOf()方法进行迭代搜索。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C#变量在ASP.NET中怎么使用