static String replace(String str, String pattern, String replacement) { return str.replaceAll(RegExp(pattern), replacement); }