【程序49】 题目:计算字符串中子串出现的次数

/*
	2017年3月13日11:46:48
	java基础50道经典练习题 例49
	Athor: ZJY 
	Purpose:  
	【程序49】
	题目:计算字符串中子串出现的次数 

*/
import java.util.Scanner;

public class ProgramNo49_1 
{
	public static void main(String[] args) {
		System.out.print("请输入一串字符串和子字符串: ");
		Scanner sc = new Scanner(System.in).useDelimiter("\\s");
		String str = sc.next();
		String str_sub = sc.next();
		sc.close();

		int count = 0;
		int index = str.indexOf(str_sub);
		while (-1 != index) {
			count++;
			index = str.indexOf(str_sub, index+str_sub.length());
		}
		System.out.println(str+"字符串中"+str_sub+"子字符一共有"+count+"个");
		
	}
}

/*
	2017年3月13日11:46:48
	java基础50道经典练习题 例49
	Athor: ZJY 
	Purpose:  
*/
public class ProgramNo49_2
{
	public static void main(String[] args){
		String str = "I come from County DingYuan Province AnHui.";
		char[] ch = str.toCharArray();
		int count = 0;
		for(int i=0; i<ch.length; i++){
			if(ch[i]==' ')
			  count++;
		}
		count++;
		System.out.println("共有"+count+"个字串");
	}
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值