java中怎么实现求字符串中某个字母出现的次数

如题所述

str为你要测试的字符串第一种方法:byte[]temp=str.getBytes();//使用平台默认的字符集将此String解码为字节序列,并将结果存储到一个新的字节数组中。intcount=0;//遍历数组的每一个元素,也就是字符串中的每一个字母for(inti=0;i<temp.length;i++){//如果字母等于cif(temp[i].equals('c')){//计数器加一count++;}}第二种:intcount=0;Stringstr=//你要测试的字符串//index为字符串中第一次出现c的位置,如果字符串中没有c将返回-1intindex=str.indexOf(c);//如果字符串中有cwhile(str.indexOf(c)!=-1){count++;//将字符串出现c的位置之前的全部截取掉str=str.subString(str.indexOf(c));}考虑大小写:str=str.toLowerCase();//将字符串全部转化成小写
温馨提示:内容为网友见解,仅供参考
第1个回答  2015-10-14
public class M {

public static int count(String s, char ch) {
int sum = 0;
int length = s.length();
for (int i = 0; i != length; ++i) {
if (ch == s.charAt(i)) {
++sum;
}
}
return sum;
}

public static void main(String [] args) throws Exception{
System.out.println(count("hello, world!", 'l'));
}

}

第2个回答  2017-08-02

相似回答