编写一个方法统计出字符串s在字符串src中出现的次数

public class StrTimes {
public static void main(String[] args) {
String s = "qq";
String src = new Scanner(System.in).next();//键盘输入src
strTime(s,src);
}
public static void strTime(String s,String src){
//将src中出现的s字符串替换为空,然后计算
int count = (src.length()-src.replace("qq","").length())/s.length();
System.out.println(count);
}
}

Java求一个字符串中,指定字符串出现的次数_听风听雨的博客-CSDN博客_一个字符串中某个字符串出现的次数

编写一个方法统计出字符串s在字符串src中出现的次数最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/10355.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>