replace: replaces all occurrences of a substring
String replace(String oldValue, String newValue) { return this?.replaceAll(oldValue, newValue) ?? ""; }