Java求一个字符串中,指定字符串出现的次数

import java.util.Scanner;

/**
 * 编写一个方法,输出在一个字符串中,指定字符串出现的次数
    提示:
        方法一:使用indexOf和subString方法,循环判断并截取
        方法二:使用replace方法将字符串替换为空,然后求长度
 * @author 万星明
 * @version 1.0
 * @time
 */
public class Work4 {
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) {
        System.out.println("请输入原字符串:");
        String st = sc.next();
        System.out.println("请输入指定字符串:");
        String M = sc.next();
        way1(st,M);
        way2(st,M);
    }
    /**
     * 方法一:使用indexOf和subString方法,循环判断并截取
     */
    public static void way1(String st,String M) {
        int count = 0;
        while(st.indexOf(M)>=0) {
            st=st.substring(st.indexOf(M)+M.length());
            count++;
        }
        System.out.println("指定字符串在原字符串中出现:"+count+"次");
    }
    /**
     * 方法二:使用replace方法将字符串替换为空,然后求长度
     */
    public static void way2(String st,String M) {
        int count = (st.length()-st.replace(M, "").length())/M.length();
        System.out.println("指定字符串在原字符串中出现:"+count+"次");
    }
    
}

你可能感兴趣的:(Java求一个字符串中,指定字符串出现的次数)