strip static method

String strip(
  1. String cep
)

Implementation

static String strip(String cep) {
  return cep.replaceAll('.', '').replaceAll('-', '');
}