字符串的查找

Posted 竹之轩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串的查找相关的知识,希望对你有一定的参考价值。

最简单的就是contains()方法

String str = "helloworld";

System.out.println(str.contains("world"));   // true    jdk 1.5 后才有的

System.out.println(str.indexOf("world"));   //  5  w 开始的索引   jdk 1.5 前采用indexOf() 方法    

System.out.println(str.indexOf("java"));    // -1 没有查到

if(str.indexOf("world")!=-1) 

{

  System.out.println("可以查找到指定的内容!");

}

建议使用contains()方法

 

字符串的替换

String str = "helloworld";

System.out.println(str.replaceAll("l","_"));     //  he__oworld

System.out.println(str.replaceFirst("l","_"));  //  he_loworld

以上是关于字符串的查找的主要内容,如果未能解决你的问题,请参考以下文章

在linux中查找字符串用啥命令

JS查找某个字符在字符串中出现的位置及次数

用js查找中文字符串位置

c++ 文本文件中查找字符串

字符串查找(重复次数)

请问如何用excel实现批量查找多个字符串出现的次数?