代码实现统计大串中小串出现的次数

package com.loaderman.test;

public class Test {

	/**
	 * * A:画图演示
	 * 需求:统计大串中小串出现的次数
	 * 这里的大串和小串可以自己根据情况给出
	 * 
	 */
	public static void main(String[] args) {
		//定义大串
		String max = "woaiheima,heimabutongyubaima,wulunheimahaishibaima,zhaodaogongzuojiushihaoma";
		//定义小串
		String min = "heima";
		
		//定义计数器变量
		int count = 0;
		//定义索引
		int index = 0;
		//定义循环,判断小串是否在大串中出现
		while((index = max.indexOf(min)) != -1) {
			count++;									//计数器自增
			max = max.substring(index + min.length());
		}
		
		System.out.println(count);
	}

}

 

posted on 2017-03-07 19:22  LoaderMan  阅读(368)  评论(0编辑  收藏  举报

导航