编写一个方法统计出字符串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博客_一个字符串中某个字符串出现的次数
共有 0 条评论