Question: In Java Given an array of acronyms, an array of definitions, and a string of text, this method replaces every instance of an acronym in
In Java
Given an array of acronyms, an array of definitions, and a string of text, this method replaces every instance of an acronym in the text with its corresponding definition. You may assume that the two arrays will be the same length.
Three paramters being passed. String[] acronyms, String[] definitions, String text
Ex. {"TTYL", "m8"}, {"Talk to you later", "mate"}, "ttyl m8 I'll see you tomorrow.") -> "Talk to you later mate I'll see you tomorrow."
Will not work if the string text not match us with acronyms "ttyl8r m8 I'll see you tomorrow." -> ttyl8r mate I'll see you tomorrow.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
