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

溫馨提示×

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

c#
小億
145
2023-10-18 14:52:16
欄目: 編程語言

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()方法進行迭代搜索。

0
通渭县| 巴楚县| 环江| 贡觉县| 仁怀市| 瑞丽市| 澄江县| 宁远县| 孙吴县| 尼勒克县| 那坡县| 寻乌县| 定西市| 石门县| 鄯善县| 东丰县| 定陶县| 理塘县| 临洮县| 五指山市| 宁安市| 南丹县| 荃湾区| 体育| 尉氏县| 松原市| 江山市| 康定县| 新余市| 哈尔滨市| 祁门县| 隆化县| 霍城县| 汉川市| 陈巴尔虎旗| 孙吴县| 万源市| 河北区| 县级市| 永清县| 四川省|