我有一个方法,我想返回一个字符串的路径 例如,如果我输入:xxdrrryy - 它应该返回rrr,我只能返回一个长度为3的字符串,所以我正在尝试这个,但我跟踪了。它必须连续三次出现一个字母
public String countTriple(String str) {
int count = 1;
char currChar = str.charAt(0);
for(int i=1; i<str.length(); i++) {
if(currChar == str.charAt(i)) {
count++;
if(count == 3) {
StringBuilder sb = new StringBuilder("");
for(int j=0; j<3;j++) {
sb.append(currChar);
}
return sb.toString();
}
}
else {
count = 1;
}
currChar = str.charAt(i);
}
return null; //no triple found
}
答案 0 :(得分:2)
请更新您的说明,很难理解您要说的内容。 但据我所知,你想要找出字符串中特定字符的计数。 假设您输入“aabbbcccc”然后它应该返回c有4个字符或类似的东西。
如果是这种情况,则对该字符串中的每个字符进行简单遍历并将其添加到HashTable中,并在每次找到该字符时增加计数,并返回所需的值。
我希望这对你有所帮助。
答案 1 :(得分:2)
此代码有效。试试这个:
public static String countTriple(String str) {
int count = 1;
char currChar = str.charAt(0);
for(int i=1; i<str.length(); i++) {
if(currChar == str.charAt(i)) {
count++;
if(count == 3) {
StringBuilder sb = new StringBuilder("");
for(int j=0; j<3;j++) {
sb.append(currChar);
}
return sb.toString();
}
}
else {
count = 1;
}
currChar = str.charAt(i);
}
return null; //no triple found
}
答案 2 :(得分:2)
除非您有特殊原因,否则我建议使用正则表达式。
这样的事情就足够了
Pattern p = Pattern.compile("(\\w)\\1\\1");
Matcher m = p.matcher("abbccc");
if(m.find()){
System.out.println(m.group());
}
只需导入java.util.regex.*