統計字符串中字符的個數
public class 統計字符存在的個數 {
String string="sdfsdfsdf sdfsd iinilgh ,mkn ,ikj";
Map<Character,Integer> map=new HashMap<>();
public Map<Character, Integer> getNum(String str){
for(int i=0;i<str.length();i++){
char c=str.charAt(i);
if(map.containsKey(c)){
map.put(c, map.get(c)+1);
}else{
map.put(c, 1);
}
}
System.out.println(map);
return map;
}
@Test
public void test1(){
getNum(string);
}
public static void main(String[] args) {
//原有長度減去替換後的長度就是該字母的個數
String str = "hello world";
int length =0;
while(str.length()>0){
String first = String.valueOf(str.charAt(0));//將第一個字母變為字符串
String newString = str.replaceAll(first, "");//將第一個字符相同的替換為空字符串
length = str.length() - newString.length();
str = newString;
System.out.print(first+":"+length+" ");
}
}
}
統計字符串中字符的個數