replace character in int java code example
Example 1: java replace character
// We want to replace every # with a 8
String larry = "Larry is # years old";
String newString = larry.replace("#", "8");
Example 2: java replace character in string
String s = "new String";
String replaced = s.replace("new","Test");
^ ^
old new char