Question: (In Java): Write a method that cleans a string by removing the punctuation and common words listed below. You can assume the words in the
(In Java): Write a method that cleans a string by removing the punctuation and common words listed below. You can assume the words in the input string are separated by single spaces, the input string does not begin or end with a space, and the input string does not contain any non-letter characters besides spaces and the punctuation below. The method should return a lower-case, space-delimited version of the input string, with the punctuation and common words removed.

Punctuation marks to be removed Words to be remov ed: an the is am are and oI Required method header public static String cleanText (String s) Example inputs and outputs: Input: "Omg, so like, the fox, like, totally jumped over the lazy dog!" Output: "omg so like fox like totally jumped over lazy dog" Input: "I provide this example: a, b, or c. . ." i provide this exampleb c" Output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
