indexOf()有四种方法,用来查找某个字符或字符串的位置:
1、str.indexOf(104);查找某个字符所在的下标位置,查找失败结果为-1;
2、str.indexOf("hell");查找某个字符串所在的位置,查找失败结果为-1;
3、str.indexOf(101, 4);从某个下标位置开始查找某个字符所在的位置,查找失败结果为-1;
4、str.indexOf("che", 0);从某个下标位置开始查找某个字符串所在的位置,查找失败结果为-1;
String str = "abchello";
//1.indexOf(int ch)
str.indexOf(104);
System.out.println(str.indexOf(104));//h所在下标为3
//2.indexOf(String str)
str.indexOf("hell");
System.out.println(str.indexOf("hell"));//3
//3.indexOf(int ch,int fromIndex)
str.indexOf(101, 4);//4
System.out.println(str.indexOf(101, 4));
str.indexOf(101,5);//没有查找到返回-1
System.out.println(str.indexOf(101,5));
//4.indexOf(String str,int fromIndex)
str.indexOf("che", 0);//等价于str.indexOf("che")
System.out.println(str.indexOf("che", 0));//2
运行结果:
文章来源:https://www.toymoban.com/news/detail-510728.html
文章来源地址https://www.toymoban.com/news/detail-510728.html
到了这里,关于Java中indexOf()的用法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!