#numbers #greek #tax #validation #identification #αφμ #afm

afm-rs

A validator for greek tax identification number (ΑΦΜ)

2 releases

0.1.1 Dec 29, 2020
0.1.0 Dec 29, 2020

#11 in #greek

MIT license

4KB
66 lines

afm-rs

CI

A validator for greek tax identification number (ΑΦΜ)

Usage

Add afm-rs under [dependencies] in your Cargo.toml:

[dependencies]
afm-rs = "0.1.1"

Use the validator:

use afm_rs;

// An invalid AFM
let (is_valid, err) = afm::validate("123456789");
assert!(!is_valid);
println!("{}", err);

// A valid AFM
let (is_valid, err) = afm::validate("997788278");
assert!(is_valid);
assert_eq!("", err)

lib.rs:

A validator for greek tax identification number (ΑΦΜ) More information is available on ΑΦΜ.

No runtime deps