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