用Java语言编写一个方法,输出在一个字符串中,指定字符串出现的次数。

【Java】编写一个方法,输出在一个字符串中,指定字符串出现的次数。

/*作者:龙蝶
*日期:2020年4月1日
*编写一个方法,输出在一个字符串中,指定字符串出现的次数
*/

public calss Count{
	String s1="qwertaqwerqwer" ;
	String s2="qwer";
	int temp=0;
	int count=0;
	for(int i=0;i<s1.length();i++){
		if(s1.indexOf(s2,temp)!=-1){
			temp=s1.indexOf(s2,temp)+s2.length();
			count++;
		}
	}
	System.out.print("qwer出现的次数:"count);
	}
}

运行结果:
qwer出现的次数:3

你可能感兴趣的:(用Java语言编写一个方法,输出在一个字符串中,指定字符串出现的次数。)