Question: In java: The method below goes word by word and left trims ['.', '(', '', '''] and right trims [',', '.', '?', '!', ':', ')',
In java:
The method below goes word by word and left trims ['.', '(', '"', '\''] and right trims [',', '.', '?', '!', ':', ')', '"', '\'' ] from each word. if after the trimming the word has length > 0 and it is not present in the array stopWords, then it gets included in the return array. otherwise, it is not considered.
Please create two additional helper methods to make cheggExample() easier. one for leftTrims and the other for rightTrims. When done, call these two methods into cheggExample().
No arrayLists.
public static String [] cheggExample (String [] words, String[] stopWords){
String[] o= new String[words.length];
return o;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
