Java中的indexOf函數用于查找指定字符或字符串在字符串中第一次出現的位置。它有兩種形式的用法:
int indexOf(int ch)
:返回指定字符在字符串中第一次出現的位置。如果未找到指定字符,則返回-1。示例代碼:
String str = "Hello World";
int index = str.indexOf('o');
System.out.println(index); // 輸出:4
int indexOf(String str)
:返回指定字符串在字符串中第一次出現的位置。如果未找到指定字符串,則返回-1。示例代碼:
String str = "Hello World";
int index = str.indexOf("lo");
System.out.println(index); // 輸出:3
此外,indexOf函數還有兩種帶有起始位置參數的使用方式:
int indexOf(int ch, int fromIndex)
:從指定的起始位置開始,返回指定字符在字符串中第一次出現的位置。如果未找到指定字符,則返回-1。示例代碼:
String str = "Hello World";
int index = str.indexOf('o', 5);
System.out.println(index); // 輸出:7
int indexOf(String str, int fromIndex)
:從指定的起始位置開始,返回指定字符串在字符串中第一次出現的位置。如果未找到指定字符串,則返回-1。示例代碼:
String str = "Hello World";
int index = str.indexOf("lo", 2);
System.out.println(index); // 輸出:3