static String strip(String cpf) { RegExp regExp = RegExp(stripRegex); return cpf.replaceAll(regExp, ""); }