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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!