java的indexof方法
时间: 2023-09-25 08:15:25 浏览: 88
简单谈谈JS数组中的indexOf方法
Java中的indexOf()方法用于查找指定字符或字符串在字符串中第一次出现的位置。它的语法如下:
```
public int indexOf(int ch)
public int indexOf(String str)
public int indexOf(int ch, int fromIndex)
public int indexOf(String str, int fromIndex)
```
其中,ch是要查找的字符,str是要查找的字符串,fromIndex是开始查找的位置。
例如,下面的代码演示了如何使用indexOf()方法查找一个字符串中某个子串的位置:
```
String str = "Hello, world!";
int index = str.indexOf("world");
System.out.println("The index of 'world' in the string is: " + index);
```
输出结果为:
```
The index of 'world' in the string is: 7
```
在这个例子中,我们调用了indexOf()方法来查找字符串中"world"这个子串的位置,它返回了7,表示这个子串在字符串中的位置是从第7个字符开始的。
阅读全文