在Java中,indexOf()
是String类的一个方法,用于查找指定字符或子字符串在字符串中首次出现的位置。如果找不到该字符或子字符串,则返回-1。
以下是使用indexOf()
方法在字符串中查找字符或子字符串的示例:
public class Main {
public static void main(String[] args) {
String str = "Hello, World!";
char ch = 'W';
String sub = "World";
int index1 = str.indexOf(ch);
int index2 = str.indexOf(sub);
System.out.println("The index of '" + ch + "' in the string is: " + index1);
System.out.println("The index of \"" + sub + "\" in the string is: " + index2);
}
}
在这个例子中,我们首先定义了一个字符串str
,一个字符ch
和一个子字符串sub
。然后,我们使用indexOf()
方法分别查找字符ch
和子字符串sub
在字符串str
中的位置,并将结果存储在变量index1
和index2
中。最后,我们打印出这两个位置。
输出结果如下:
The index of 'W' in the string is: 7
The index of "World" in the string is: 7
需要注意的是,indexOf()
方法返回的是指定字符或子字符串在字符串中首次出现的位置,而不是最后一个出现的位置。如果需要查找最后一个出现的位置,可以使用lastIndexOf()
方法。