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\n", 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\n", index);
   }
}

输出结果

String: testdemo
'h' is at index -1