#country-code #phone-number #iso3166-1 #e164

e164-phones-countries

A small utility which maps E.164 international phone numbers to ISO 3166 country codes as well as the ISO 3166 country codes to country phone codes

3 releases

Uses old Rust 2015

0.1.2 Sep 13, 2015
0.1.1 Sep 6, 2015
0.1.0 Jul 24, 2015

#273 in Internationalization (i18n)

Download history 10/week @ 2024-02-18 5/week @ 2024-02-25 22/week @ 2024-03-03 36/week @ 2024-03-10 20/week @ 2024-03-17

84 downloads per month

MIT license

32KB
908 lines

e164-phones-countries

A small utility which maps E.164 international phone numbers to ISO 3166 country codes as well as the ISO 3166 country codes to country phone codes.

Add e164-phones-countries dependency to your project Cargo.toml file:

[dependencies]
e164-phones-countries = "0.1.1"

Add e164-phones-countries to your project's source code:

extern crate e164-phones-countries;

use e164-phones-countries::find_iso_3166;
use e164-phones-countries::find_phone_cc;

Methods signatures:

fn find_iso_3166(phone:&str) -> &'static str
fn find_phone_cc(code:&str) -> &'static str

No runtime deps