dartoos-dev / formdator

Object-oriented package for validating Flutter form fields.
MIT License
10 stars 2 forks source link

Implement Cep and ReqCep validators along with the CepStrip utility class #71

Closed rafamizes closed 3 years ago

rafamizes commented 3 years ago

Cep (Código de Endereçamento Postal) is the Brazilian equivalent of zip code or postal code. The standard format is "nnnnn-nnn" (the original five digits, a hyphen, and the new three digits).

The 'CepStrip' class transforms a well-formed 'CEP' value into a plain value, that is, it retrieves the 8 digits without the hyphen "-". In case of a malformed input 'CEP value, the class will return null.