replace
static String? replace(String? text, Pattern from, String replace) { if (isEmpty(text)) { return null; } return text!.replaceAll(from, replace); }