how to replace all of one character with nothing in java

Solutions on MaxInterview for how to replace all of one character with nothing in java by the best coders in the world

showing results for - "how to replace all of one character with nothing in java"
Alberto
03 Nov 2017
1String meal = "Hambbburger";
2
3String replaced = meal.replaceAll("b","");