我需要将行保存到字符串中
前任:
public function countOccurrences() {
String Message = "Hello, how are you?"
String trim = Mensaje.replaceAll(" ", "");
char[] third = trim.toCharArray();
for (int counter = 0; counter < third.length; counter++) {
char ch = third[counter];
int count = 0;
for (int i = 0; i < third.length; i++) {
if (ch == third[i]) {
count++;
}
}
boolean flag = false;
for (int j = counter - 1; j >= 0; j--) {
if (ch == third[j]) {
flag = true;
}
}
if (!flag) {
trim = "Letra:" + ch + " se repite " + count + " veces ";
// trim is a String where I need to store this information
}
}
预期结果:
- 我需要计算字符串中每个字符的出现次数:消息
- 将此信息存储在 txt 文件中
前任:
newfile.txt里面有这些信息:
H, 2 times
e, 2 times
l, 2 times
o, 3 times
w, 1 times
a, 1 times
r, 1 times
e, 1 times
y, 1 times
u, 1 times
//
我尝试过有人发布它:
trim = trim + "\n" + ch + ", " + count + " veces \n";
结果在文件中是这样的:(更接近)
你好吗?H, 2 次 e, 2 次 l, 2 次 o, 3 次,, 1 次 w, 1 次 a, 1 次 r, 1 次 y, 1 次 u, 1 次 ?, 1 次