中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
衡阳市| 和田市| 凤阳县| 东辽县| 涟源市| 和硕县| 武乡县| 子洲县| 卢氏县| 闽清县| 宝鸡市| 无棣县| 吴堡县| 鄂伦春自治旗| 陈巴尔虎旗| 棋牌| 靖安县| 岚皋县| 库尔勒市| 凌源市| 六枝特区| 高碑店市| 河南省| 竹溪县| 望谟县| 策勒县| 元阳县| 云安县| 安乡县| 吴江市| 垣曲县| 石楼县| 天津市| 罗江县| 山东省| 政和县| 武邑县| 修水县| 三江| 潞西市| 濮阳市|