java-字符串中字符出现的次数

/*
获取一个字符串在另一个字符串中出现的次数。
	"abkkcdkkefkkskk"


	思路:
	1,定义个计数器。
	2,获取kk第一次出现的位置。
	3,从第一次出现位置后剩余的字符串中继续获取kk出现的位置。
		每获取一次就计数一次。
	4,当获取不到时,计数完成。



*/

class StringTest3 
{
	public static int getSubCount(String str,String key)
	{
		int count = 0;
		int index = 0;
		while((index=str.indexOf(key))!=-1)
		{
			sop("str="+str);
			str = str.substring(index+key.length());

			count++;	
		}
		return count;
	}
	
	public static int getSubCount_2(String str,String key)
	{
		int count = 0;
		int index = 0;

		while((index= str.indexOf(key,index))!=-1)
		{
			sop("index="+index);
			index = index + key.length();

			count++;
		}
		return count;
	}
	public static void sop(String str)
	{
		System.out.println(str);
	}

	public static void main(String[] args) 
	{
		String str = "abkkcdkkefkkskk";
		sop("count="+getSubCount_2(str,"kk"));
		
	}
}
     




你可能感兴趣的:(❾,编程语言-Java)