package string.practice;

/*
 * 计算字符串中的特定字符的个数
 */
public class stringNumber {
	public static void main(String[] args) {
		String str="abcgdgjnvccdseo";
		
		//1.利用for循环
		char temp;
		int count=0;
		for(int i=0;i<str.length();i++)
		{
			temp=str.charAt(i);        
			if(temp=='c')
			{
				count++;
			}
			
		}
    System.out.println("for循环查找的个数为:");
		System.out.println(count);
		
		
		//2.利用替换
		String result=str.replace("c", "");       //将要查找的c替换成空
        System.out.println("替换查找的个数为:");
		System.out.println(str.length()-result.length());  //长度相减可得c的个数
	}

}

案例结果:

计算字符串中特定字符的个数---Java_字符串