How can you replace all of the letter a in a string variable example with the letter b?
Example: how to replace all of one character with nothing in java
String meal = "Hambbburger";
String replaced = meal.replaceAll("b","");
String meal = "Hambbburger";
String replaced = meal.replaceAll("b","");