Question: 2. Write the method resetToStar that will reset any String in the ArrayList words that contains the letter you are searching for (searchLetter) to a
2. Write the method resetToStar that will reset any String in the ArrayList words that contains the letter you are searching for (searchLetter) to a "*" character. Example: ArrayList list = new ArrayList(); list.add("walrus"); list.add("carbon"); list.add("jacket"); list.add("hammer"); list.add("compass"); resetToStar(list, "r");//reset all words containing "r" to a "*" in list System.out.println(list);// prints [ *, *, jacket, *, compass] as any words with the letter "r" //have been changed to a "*" character public static void resetToStar(ArrayList words, String searchLetter) { }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
