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