Java中的indexOf方法用于查找指定字符或字符串在字符串中第一次出現的位置,并返回索引值。
使用方法:
indexOf(char ch)
:返回指定字符在字符串中第一次出現的位置,如果不存在返回-1。示例:
String str = "Hello, world!";
int index = str.indexOf('o');
System.out.println(index); // 輸出4
indexOf(String str)
:返回指定字符串在字符串中第一次出現的位置,如果不存在返回-1。示例:
String str = "Hello, world!";
int index = str.indexOf("world");
System.out.println(index); // 輸出7
indexOf(char ch, int fromIndex)
:返回指定字符在字符串中從指定位置開始到末尾第一次出現的位置,如果不存在返回-1。示例:
String str = "Hello, world!";
int index = str.indexOf('o', 5);
System.out.println(index); // 輸出7
indexOf(String str, int fromIndex)
:返回指定字符串在字符串中從指定位置開始到末尾第一次出現的位置,如果不存在返回-1。示例:
String str = "Hello, world!";
int index = str.indexOf("o", 5);
System.out.println(index); // 輸出7