共计 378 个字符,预计需要花费 1 分钟才能阅读完成。
在 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。
丸趣 TV 网 – 提供最优质的资源集合!
正文完