java regex replace 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 string regexp replace
String input = "abcd";
Pattern p = Pattern.compile("regexp");
String output = p.matcher(input).replaceAll("replacement");