IndexOf和LastIndexOf方法都用于在字符串中查找特定字符或子字符串的位置。
IndexOf方法用于查找字符串中第一次出現特定字符或子字符串的位置,并返回該位置的索引值。如果未找到該字符或子字符串,則返回-1。
使用示例:
string str = "Hello, World!";
int index = str.IndexOf("o");
Console.WriteLine(index); // 輸出結果為 4
LastIndexOf方法用于查找字符串中最后一次出現特定字符或子字符串的位置,并返回該位置的索引值。如果未找到該字符或子字符串,則返回-1。
使用示例:
string str = "Hello, World!";
int lastIndex = str.LastIndexOf("o");
Console.WriteLine(lastIndex); // 輸出結果為 8