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