本文介紹了如何查找字符串中的不同字符個數(shù)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我必須計算字符串中不同字母表中不同字符的數(shù)量,因此在本例中計數(shù)將為-3(d
、k
和s
)。
給定以下String
:
String input;
input = "223d323dk2388s";
count(input);
我的代碼:
public int count(String string) {
int count=0;
String character = string;
ArrayList<Character> distinct= new ArrayList<>();
for(int i=0;i<character.length();i++){
char temp = character.charAt(i);
int j=0;
for( j=0;j<distinct.size();j++){
if(temp!=distinct.get(j)){
break;
}
}
if(!(j==distinct.size())){
distinct.add(temp);
}
}
return distinct.size();
}
輸出:3
是否有任何本機庫可以返回該字符串中存在的字符數(shù)?
推薦答案
使用Java 8時,這要容易得多。您可以使用類似以下內(nèi)容
return string.chars().distinct().count();
這篇關(guān)于如何查找字符串中的不同字符個數(shù)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,