java 基础 - 查找某个字串出现的次数及位置

Posted 成长园地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 基础 - 查找某个字串出现的次数及位置相关的知识,希望对你有一定的参考价值。

查找某个字串出现的次数及位置

public class search {
public static void main(String[] args){

String str = "abc123abcd1234";
String searchStr ="bc";
int count = getStrCount(str,searchStr);
System.out.println("count is: "+ count);

}


public static int getStrCount(String str,String searchStr){
int index =0;//define the index
int count =0;//define the count

while((index=str.indexOf(searchStr,index))!= -1) {

if (searchStr.equals(str.substring(index,index+searchStr.length()))) {

System.out.println("index is :" + index);//print index

index = index + searchStr.length();

count++;

}
}
return count;
}

}

 

运行结果:

index is :1
index is :7
count is: 2

 

以上是关于java 基础 - 查找某个字串出现的次数及位置的主要内容,如果未能解决你的问题,请参考以下文章

java语言在某个数组中查找某个字符出现的次数

C语言简单的字符串、字符处理问题求助

字符串的常用操作

java 蓝桥杯算法提高 字串统计

查找并计算列表中某个范围内所有出现的数字和位置

华为python机试题目:整数与IP地址间的转换图片整理字串的连接最长路径查找提取不重复的整数字符串合并处理字符串最后一个单词的长度删除字符串中出现次数最少的字符