導航:首頁 > 編程語言 > java統計字元串中每個字元出現的次數

java統計字元串中每個字元出現的次數

發布時間:2024-12-09 14:02:27

java中怎麼統計一個字元串中每個字元的出現次數

操作如下:

String str ="2342asfghgyu56asdasda";Map<String,Integer> maps = new HashMap<String,Integer>();for(int i=0;i<str.length();i++){。

String key = String.valueOf((str.charAt(i)));if(!maps.containsKey(key)),maps.put(key, 1);else{int val =maps.get(key);maps.put(key, val+1);

for(Map.Entry i : maps.entrySet()){System.out.println(i.getKey()+ "=="+i.getValue());

Ⅱ 用java編寫一個函數,統計一個字元串中每個字母出現的次數,謝謝啦

Stringstr="123eeerfdfr5656$%";
HashMap<Character,Integer>hm=newHashMap<Character,Integer>();
char[]arr=str.toCharArray();
for(charc:arr){
hm.put(c,hm.containsKey(c)?hm.get(c)+1:1);
}
System.out.println(hm);

Ⅲ java怎麼實現統計一個字元串中字元出現的次數

可以用String的indexof(str,fromindex)方法,循環遍歷加一個計數器統計次數。

publicclassCountTimes{

publicstaticvoidmain(String[]args){

Stringstr="Intheentireworldthere'";

inttimes=searchstr("my",str);//返回2

System.out.println(times);

}

publicstaticintsearchstr(Stringkey,Stringstr){

intindex=0;//每次的搜索到的下標

intcount=0;//計數器
while((index=str.indexOf(key,index))!=-1){

index=index+key.length();

count++;
}
returncount;

}

}

Ⅳ java 統計字元串中指定字元出現的次數

已經修改好,如下:
public static void main(String[] args) throws IOException{

byte str[]=new byte[20];
byte bt[]=new byte[2];
System.out.println("請輸入一組字元...");
System.in.read(str) ;
System.out.println("請輸入要統計的字元...");
System.in.read(bt);
int i;
int count=0;
System.out.println(str.length);
for(i=0;i<=str.length;i++){
if(str[i]!=0)
{
if(bt[0]==str[i])
{
count++;
System.out.println(str[i]);
}

}
else break;
}
System.out.println("字元"+bt+"在字元串中出現的次數為:"+count);
}

Ⅳ java怎麼實現統計一個字元串中字元出現的次數

說下思路,字元串轉成
字元數組
,然後遍歷。結果存Map<Character,Integer>。如果需要代碼,追問吧,現在是手機回答的。

Ⅵ java 統計一個字元串中某字元出現的次數

public class CharCounter{
public static int counter(String s,char c){
int count=0;
for(int i=0;i<s.length();i++){
if(s.charAt(i)==c){
count++;
}
}
return count;
}
public static void main(String args[]){
System.out.println(new CharCounter().counter("LOVELOVEYOU",'O'));
}
}
試試這個,調試好了,可以直接運行,祝工作學習順利

閱讀全文

與java統計字元串中每個字元出現的次數相關的資料

熱點內容
哪個軟體可以編程手機軟體 瀏覽:554
如東如何學數控編程培訓 瀏覽:5
微信h5頁面怎麼修改 瀏覽:931
手機怎麼無法打開視頻文件夾 瀏覽:840
抖音如何上直播網站 瀏覽:887
錄屏截圖大師保存的文件在哪裡 瀏覽:751
紅河谷第二個版本 瀏覽:895
c語言如何讓整型數據的商為小數 瀏覽:863
怎樣下東西不要密碼 瀏覽:320
小米手機拍照後文件名要怎麼設置 瀏覽:429
每年程序員就業形勢 瀏覽:425
安卓手機如何卸載程序 瀏覽:955
相機能用qq不能用 瀏覽:319
win10如何設置成xp配置文件 瀏覽:748
蘋果隔空傳遞以後文件在哪裡 瀏覽:927
打開ps顯示文件名無效 瀏覽:379
做推廣哪個網站靠譜 瀏覽:588
qq飛車如何綁定好友 瀏覽:873
php編程語言在哪裡 瀏覽:302
矢量文件有哪些格式 瀏覽:790

友情鏈接