Java 字符串 indexOf() 方法
示例
在字符串中搜索 "planet" 的首次出现
String myStr = "Hello planet earth, you are a great planet.";
System.out.println(myStr.indexOf("planet"));
定义和用法
indexOf()
方法返回字符串中指定字符(串)首次出现的索引位置。
提示: 使用 lastIndexOf 方法来返回字符串中最后一次出现的指定字符(串)的索引位置。
语法
以下之一
public int indexOf(String str)
public int indexOf(String str, int fromIndex)
public int indexOf(int char)
public int indexOf(int char, int fromIndex)
参数值
参数 | 描述 |
---|---|
str | 一个 String 值,代表要搜索的字符串 |
fromIndex | 一个 int 值,代表从哪个索引位置开始搜索 |
char | 一个 int 值,代表一个单字符,例如 'A',或一个 Unicode 值 |
技术细节
返回值 | 一个 int 值,代表字符在字符串中首次出现的索引,如果从未出现则返回 -1 |
---|
更多示例
示例
查找字符串中字母“e”的首次出现,从位置 5 开始搜索
public class Main {
public static void main(String[] args) {
String myStr = "Hello planet earth, you are a great planet.";
System.out.println(myStr.indexOf("e", 5));
}
}
❮ 字符串方法