在Java中,indexOf()方法用于查找指定元素在字符串中第一次出現的位置。方法的語法如下:
public int indexOf(String str)
參數str是要查找的字符串,方法返回值是指定字符串在原字符串中第一次出現的位置(索引),如果未找到,則返回-1。
下面是一個示例代碼:
String str = "Hello, World!";
int index = str.indexOf("World");
System.out.println("The index of 'World' in the string is: " + index);
在這個例子中,indexOf()方法將在字符串"Hello, World!"中查找子字符串"World"的位置,并將結果打印出來。