replace all . with , java code example
Example 1: how to replace all of one character with nothing in java
String meal = "Hambbburger";
String replaced = meal.replaceAll("b","");
Example 2: replaceall in java
public class ReplaceAllExample{
public static void main(String args[]){
String s1="Google is a very good website";
String replaceString=s1.replaceAll("a","e");//replaces all occurrences of "a" to "e"
System.out.println(replaceString);
}}