replaceall character in string java code example
Example 1: java replace character in string
String s = "new String";
String replaced = s.replace("new","Test");
^ ^
old new char
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);
}}