在C#中,IndexOf()方法用于在字符串中查找指定字符或子字符串的第一個匹配項,并返回其索引位置。它的語法如下:
public int IndexOf(char value)
public int IndexOf(string value)
其中,第一個重載方法接受一個char類型的參數,用于查找某個字符在字符串中的位置;第二個重載方法接受一個string類型的參數,用于查找某個子字符串在字符串中的位置。
示例:
string text = "Hello, World!";
int index = text.IndexOf('o'); // 返回值為4
int index2 = text.IndexOf("World"); // 返回值為7
在上述示例中,IndexOf(‘o’)方法返回字符’o’在字符串中的位置,即索引4;IndexOf(“World”)方法返回子字符串"World"在字符串中的位置,即索引7。
如果未找到指定字符或子字符串,則IndexOf()方法返回-1。
此外,IndexOf()方法還可以接受兩個參數:
public int IndexOf(char value, int startIndex)
public int IndexOf(string value, int startIndex)
startIndex參數表示從字符串的指定索引位置開始搜索匹配項。