Java String indexOf(int ch, int fromIndex)方法
描述
此方法返回指定字符在字符串中的第一次出现的索引,从指定索引开始搜索,如果字符不存在,则返回 -1。
语法
这是该方法的语法 –
public in indexOf(int ch, int fromIndex)
参数
这是参数的详细信息−
- ch − 一个字符(Unicode码点)。
-
fromIndex − 开始搜索的索引。
返回值
- 参见描述。
示例
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', 5 ));
}
}
这将产生以下结果−
输出
Found Index :9