我想計數它具有以下格式的文本文件中的單詞量:跳過一個字符串的前幾個字
TITEL####URL####ABSTRACT\n
TITEL####URL####ABSTRACT\n
TITEL####URL####ABSTRACT\n
這樣的:
Available line####http://en.wikipedia.org/wiki/Available_line####In voice,
Marwan al-Shehhi####http://en.wikipedia.org/wiki/Marwan_al-Shehhi####Marwan etc.
Theodore Beza####http://en.wikipedia.org/wiki/Theodore_Beza####Theodore Beza etc.
我的代碼來算的話是這樣的:
public static int countTotalWords() {
totalWords = 0;
try {
FileInputStream fis;
fis = new FileInputStream(fileName);
Scanner scan = new Scanner(fis);
while (scan.hasNext()) {
totalWords++;
scan.next();
}
} catch (FileNotFoundException ex) {
Logger.getLogger(Opgave1.class.getName()).log(Level.SEVERE, null, ex);
}
return totalWords;
}
我假設它的作品...
我想只計算摘要中的單詞,因此忽略標題和URL。我猜測####可以用來跳過每一行的第一部分,但對於我來說,我無法弄清楚如何。任何幫助表示讚賞!