An open API service indexing awesome lists of open source software.

https://github.com/jefersonsv/parsers

Parse, validate, generate, bind many types of documents
https://github.com/jefersonsv/parsers

cnpj cnpj-generator cnpj-validator cpf cpf-cnpj cpf-generator cpf-validador

Last synced: over 1 year ago
JSON representation

Parse, validate, generate, bind many types of documents

Awesome Lists containing this project

README

          

# Documentos
Parse, validate, generate, bind many types of documents

# Analisar documento CPF

```c#
CPF.IsValid("562.832.510-48") // returns true;
CPF.IsValid("56283251048") // returns true;
CPF.IsValid("562.832.510-00") // returns false;
CPF.IsValid("56283251000") // returns false;
```