#validation #format #cpf #parser

no-std cpf_util

Format and validate CPF, Brazil's ID number

2 releases

0.1.1 Oct 3, 2020
0.1.0 Apr 2, 2020

#2583 in Parser implementations

MIT/Apache

6KB
69 lines

GitHub Workflow Status Crates.io Crates.io GitHub issues

CPF util

CPF util inspired in brazilian-utils/cpf.

Usage

Add the following to your Cargo.toml:

[dependencies]
cpf_util = "0.1.1"

Examples

Format:

use cpf_util as cpf;

fn main() {
    println!("{}", cpf::format("94389575104")); // 943.895.751-04
    println!("{}", cpf::format("94389575104000000")); // 943.895.751-04
    println!("{}", cpf::format("943.?ABC895.751-04abc")); // 943.895.751-04
}

Validate:


use cpf_util as cpf;

fn main() {
    println!("{}", cpf::is_valid("foo391.838.38test0-66"); // false
    println!("{}", cpf::is_valid("40364478829")); // true
    println!("{}", cpf::is_valid("962.718.458-60")); // true
}

No runtime deps