cpf_util 0.1.1

Format and validate CPF, Brazil's ID number.
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 9.03 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.06 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • rodolfoghi/cpf-util-rust
    6 1 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • rodolfoghi

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
}