Java String indexOf()方法
描述
该方法返回指定字符在此字符串中第一次出现的索引,如果字符不存在,则返回-1。
语法
以下是该方法的语法 –
public int indexOf(char ch)
参数
这是参数的详细信息:
- ch - 一个字符。
返回值
- 查看描述。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tutorialspoint.com");
System.out.print("Found Index :" );
System.out.println(Str.indexOf( 'o' ));
}
}
这将产生以下结果−
输出
Found Index :4