在Java中,可以使用String类的indexOf()
方法来获取某个字符串的位置。该方法的语法如下:
public int indexOf(String str)
以下是一个示例:
public class Main {
public static void main(String[] args) {
String str = "Hello, World!";
int position = str.indexOf("World");
System.out.println("The position of 'World' is: " + position);
}
}
输出结果为:
The position of 'World' is: 7
在这个例子中,indexOf()
方法返回了字符串"World"在原始字符串中的位置,即7。如果原始字符串中不存在该子字符串,indexOf()
方法将返回-1。