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求一个字符串中,指定字符串出现的次数
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...