(String str)
| 93 | } |
| 94 | |
| 95 | public static String clean(String str) { |
| 96 | char[] punctuation = {',', '"', '!', '.', '\'', '?', ','}; |
| 97 | for (char c : punctuation) { |
| 98 | str = str.replace(c, ' '); |
| 99 | } |
| 100 | return str.replace(" ", "").toLowerCase(); |
| 101 | } |
| 102 | |
| 103 | public static void main(String[] args) { |
| 104 | dictionary = AssortedMethods.getTrieDictionary(); |