c#怎么查找字符串中指定字符的位置

c#
1220
2024/4/10 11:11:04
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中可以使用IndexOf方法来查找字符串中指定字符的位置。例如,要查找字符串中第一次出现指定字符的位置,可以这样做:

string str = "Hello World";
char searchChar = 'o';
int position = str.IndexOf(searchChar);

if (position != -1)
{
    Console.WriteLine("The position of '{0}' in the string is: {1}", searchChar, position);
}
else
{
    Console.WriteLine("The character '{0}' was not found in the string.", searchChar);
}

如果要查找字符串中最后一次出现指定字符的位置,可以使用LastIndexOf方法:

string str = "Hello World";
char searchChar = 'o';
int position = str.LastIndexOf(searchChar);

if (position != -1)
{
    Console.WriteLine("The last position of '{0}' in the string is: {1}", searchChar, position);
}
else
{
    Console.WriteLine("The character '{0}' was not found in the string.", searchChar);
}

这样就可以查找字符串中指定字符的位置了。

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

推荐阅读: c#如何定义数组