在 Java 中搜索字符串中的字符。


可以使用 String 类的 indexOf() 方法在字符串中搜索特定字母。如果找到该词,此方法将返回字符串中该词的位置索引。否则它将返回 -1。

示例

public class Test {
   public static void main(String args[]) {
      String str = new String("hi welcome to Tutorialspoint");
      int index = str.indexOf('w');
      System.out.println("Index of the letter w :: "+index);
   }
}

输出

Index of the letter w :: 3

更新时间: 26-Feb-2020

9K+ 阅读次数

开启 职业生涯

完成课程即可获得认证

开始
广告