我需要將字符串拆分爲單詞,以使每個單詞來自字典。還要確保選擇左側最長的單詞。因此 thisisinsane => this is insane (correct as longest possible word from left)
thisisinsane => this is in sane(wrong)
Assuming 'this', 'is', 'in', 'insane' are
我有一個很大的文本字符串,我試圖根據「。?!」將它拆分爲句子。但是,我的正則表達式不工作,有人可以指導我檢測錯誤? String str = "When my friend said he likes deep dish pizza one day, I immediately set a time to come back to Little Star. Arguably, the best d
句子字符串預計是由空格分隔的一組單詞,例如, 「現在是時候了」。 showWords作業是輸出每行一句的單詞。 這是我的功課,我想,你可以從下面的代碼中看到。我無法弄清楚如何以及使用哪個循環來逐字輸出...請幫助。 import java.util.Scanner;
public class test {
public static void main(String[] args)
我已經從文檔中提取了句子的列表。我正在預處理這個句子列表以使它更明智。我面臨着以下問題 我有句如"more recen t ly the develop ment, wh ich is a po ten t " 我想使用查找字典來糾正這樣的句子?去除不需要的空間。 最終的輸出應"more recently the development, which is a potent " 我會認爲這是在預處