Java中的indexOf方法用于查找指定字符或子字符串在字符串中第一次出現的位置。
它的使用方法如下:
indexOf(int ch)
:查找指定字符ch在字符串中第一次出現的位置。
String str = "Hello World";
int index = str.indexOf('o');
System.out.println(index); // 輸出3
indexOf(int ch, int fromIndex)
:從指定索引fromIndex開始,查找指定字符ch在字符串中第一次出現的位置。
String str = "Hello World";
int index = str.indexOf('o', 5);
System.out.println(index); // 輸出7
indexOf(String str)
:查找指定子字符串str在字符串中第一次出現的位置。
String str = "Hello World";
int index = str.indexOf("lo");
System.out.println(index); // 輸出3
indexOf(String str, int fromIndex)
:從指定索引fromIndex開始,查找指定子字符串str在字符串中第一次出現的位置。
String str = "Hello World";
int index = str.indexOf("lo", 5);
System.out.println(index); // 輸出-1,表示未找到
需要注意的是,如果未找到指定字符或子字符串,indexOf方法會返回-1。如果要判斷字符串中是否包含指定字符或子字符串,可以根據返回值是否為-1來進行判斷。