gpt4 book ai didi

java - 删除java中的所有非字母数字字符

转载 作者:行者123 更新时间:2023-12-01 11:04:01 24 4
gpt4 key购买 nike

这个程序显示每个单词在文本文件中出现的次数。发生了什么事,它也选择了像这样的角色?而且,我只想让它挑选字母。这只是结果的一部分{"1"=1, "Cheers"=1, "Fanny"=1, "I=1, "biscuits"=1, "chairz")=1, "cheeahz"=1, “crisps”=1,“jumpers”=1,?=20,工作:=1

import java.io.File;
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.TreeMap;
import java.util.StringTokenizer;

public class Unigrammodel {

public static void main(String [] args){

//Creating BufferedReader to accept the file name from the user
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

String fileName = null;
System.out.print("Please enter the file name with path: ");
try{
fileName = (String) br.readLine();

//Creating the BufferedReader to read the file
File textFile = new File(fileName);
BufferedReader input = new BufferedReader(new FileReader(textFile));

//Creating the Map to store the words and their occurrences
TreeMap<String, Integer> frequencyMap = new TreeMap<String, Integer>();
String currentLine = null;

//Reading line by line from the text file
while((currentLine = input.readLine()) != null){

//Parsing the words from each line
StringTokenizer parser = new StringTokenizer(currentLine);
while(parser.hasMoreTokens()){
String currentWord = parser.nextToken();




//remove all non-alphanumeric from this word

currentWord.replaceAll(("[^A-Za-z0-9 ]"), "");

Integer frequency = frequencyMap.get(currentWord);
if(frequency == null){
frequency = 0;
}
//Putting each word and its occurrence into Map
frequencyMap.put(currentWord, frequency + 1);
}

}

//Displaying the Result

System.out.println(frequencyMap +"\n");

}catch(IOException ie){
ie.printStackTrace();
System.err.println("Your entered path is wrong");
}

}

}

最佳答案

字符串是不可变的,因此您需要将修改后的字符串分配给变量,然后再将其添加到映射中。String wordCleaned= currentWord.replaceAll(("[^A-Za-z0-9 ]"), "");...FrequencyMap.put(wordCleaned, 频率 + 1);

关于java - 删除java中的所有非字母数字字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33131258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com