java indexof
时间: 2023-07-19 14:33:28 浏览: 49
indexOf()函数的用法
`indexOf` 是 Java 中用于查找字符串中某个子字符串第一次出现的位置的方法。它的语法为:
```
public int indexOf(String str)
```
其中 `str` 表示要查找的子字符串。
`indexOf` 方法会返回一个整数值,表示子字符串第一次出现的位置,如果没有找到则返回 -1。这个方法还有一个重载版本,可以指定查找的起始位置。例如:
```
String s = "Hello, World!";
int index = s.indexOf("World");
System.out.println(index); // 输出 7
```
这段代码会在字符串 `s` 中查找子字符串 "World",并返回它第一次出现的位置。在这个例子中,它的返回值是 7,表示 "World" 出现在字符串 `s` 的第 8 个位置。
阅读全文