indexOf的四种用法:
-
int indexOf(int ch) 返回指定字符在此字符串中第一次出现处的索引。
-
int indexOf(int ch, int fromIndex) 返回在此字符串中第一次出现指定字符处的索引,从指定的索引开始搜索。
-
int indexOf(String str) 返回指定子字符串在此字符串中第一次出现处的索引。
-
int indexOf(String str, int fromIndex) 返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始。
注:索引为ASCII码值
测试:
public class Test3 {
public static void main(String[] args) {
String str = "abcdefgh";
System.out.println("原字符串:");
System.out.println(str);
System.out.println("执行indexOf(int ch):");
System.out.println(str.indexOf(104));
System.out.println("执行indexOf(String str):");
System.out.println(str.indexOf("c"));
System.out.println("执行indexOf(int ch,int fromIndex):");
System.out.println(str.indexOf(101, 4));
System.out.println("执行indexOf(String str,int fromIndex):");
System.out.println(str.indexOf("cde", 0));
}
}

Java String indexOf 方法详解
本文详细介绍了Java中String类的indexOf方法的四种使用方式,包括如何查找特定字符和子字符串首次出现的位置,以及如何从指定索引开始搜索。通过具体示例展示了方法的运用。
1185

被折叠的 条评论
为什么被折叠?



