Java获取指定字符串出现次数的方法
Java中获取指定字符串在另一个字符串中出现的次数,供大家参考,具体内容如下
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
StringsrcText="HelloWorld";
StringfindText="e";
intnum=appearNumber(srcText,findText);
System.out.println(num);
}
/**
*获取指定字符串出现的次数
*
*@paramsrcText源字符串
*@paramfindText要查找的字符串
*@return
*/
publicstaticintappearNumber(StringsrcText,StringfindText){
intcount=0;
Patternp=Pattern.compile(findText);
Matcherm=p.matcher(srcText);
while(m.find()){
count++;
}
returncount;
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志