Java 程序查找字符串中某个字符
要查找字符串中的某个字符,请使用 indexOf() 方法。
比如,下面是我们的字符串。
String str = "testdemo";
找到字符串中的字符“d”并获取索引。
int index = str.indexOf( 'd');
示例
public class Demo { public static void main(String []args) { String str = "testdemo"; System.out.println("String: "+str); int index = str.indexOf( 'd' ); System.out.printf("'d' is at index %d, index); } }
输出
String: testdemo 'd' is at index 4
让我们看另一个示例。如果找不到字符,该方法将返回 -1 −
示例
public class Demo { public static void main(String []args) { String str = "testdemo"; System.out.println("String: "+str); int index = str.indexOf( 'h' ); System.out.printf("'h' is at index %d, index); } }
输出
String: testdemo 'h' is at index -1
广告