首页 课程 师资 教程 报名

Java中进行字符串中查找字符的例子

  • 2022-05-20 13:01:45
  • 1388次 动力节点

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

 

选你想看

你适合学Java吗?4大专业测评方法

代码逻辑 吸收能力 技术学习能力 综合素质

先测评确定适合在学习

在线申请免费测试名额
价值1998元实验班免费学
姓名
手机
提交