91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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

c#
小億
648
2024-04-12 11:11:04
欄目: 編程語言

在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);
}

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

0
霍城县| 龙川县| 福泉市| 宜章县| 扎囊县| 天祝| 长寿区| 五大连池市| 稷山县| 武川县| 新竹市| 桃江县| 公主岭市| 清水县| 桂阳县| 永年县| 浦县| 涞源县| 六盘水市| 无锡市| 会昌县| 潮安县| 无棣县| 理塘县| 江油市| 大渡口区| 连平县| 拜泉县| 新河县| 华阴市| 长葛市| 洛浦县| 宜昌市| 青铜峡市| 泌阳县| 海淀区| 丹寨县| 富锦市| 平邑县| 琼结县| 新建县|