static String strip(String? cpf) { RegExp regExp = RegExp(STRIP_REGEX); cpf = cpf == null ? "" : cpf; return cpf.replaceAll(regExp, ""); }