共计 528 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,String.indexOf() 方法用于返回指定字符串在原字符串中第一次出现的位置索引。它有两种重载形式:
indexOf(int ch)
:返回指定字符在字符串中第一次出现的位置索引(从左到右搜索),如果未找到则返回 -1。indexOf(String str)
:返回指定字符串在字符串中第一次出现的位置索引(从左到右搜索),如果未找到则返回 -1。
以下是使用示例:
String str = "Hello, World!";
int index1 = str.indexOf('e'); // 返回值为 1
int index2 = str.indexOf("World"); // 返回值为 7
int index3 = str.indexOf('x'); // 返回值为 -1(未找到)
int index4 = str.indexOf("ll", 3); // 从索引为 3 的位置开始搜索,返回值为 3
System.out.println(index1);
System.out.println(index2);
System.out.println(index3);
System.out.println(index4);
输出结果为:
1
7
-1
3
丸趣 TV 网 – 提供最优质的资源集合!
正文完