Skip to content

LoLogan/libphonenumber

This branch is 11 commits behind ttacon/libphonenumber:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

23ddf90 · Jan 8, 2019

History

98 Commits
Jun 10, 2017
Jan 8, 2019
Nov 19, 2018
Nov 13, 2018
Mar 28, 2018
Dec 27, 2014
Jul 12, 2018
Jul 15, 2018
Apr 4, 2017
Jun 4, 2018
Nov 6, 2018
Jul 12, 2018
Jul 12, 2018
Apr 23, 2015
Nov 13, 2018
Nov 13, 2018

Repository files navigation

libphonenumber

golang port of Google's libphonenumber

forthebadge

Build Status GoDoc

Status

This library is fully stable and is used in production by several companies.

Examples

Super simple to use.

To get a phone number

num, err := libphonenumber.Parse("6502530000", "US")

To format a number

// num is a *libphonenumber.PhoneNumber
formattedNum := libphonenumber.Format(num, libphonenumber.NATIONAL)

To get the area code of a number

// Parse the number.
num, err := libphonenumber.Parse("1234567890", "US")
if err != nil {
        // Handle error appropriately.
}

// Get the cleaned number and the length of the area code.
natSigNumber := libphonenumber.GetNationalSignificantNumber(num)
geoCodeLength := libphonenumber.GetLengthOfGeographicalAreaCode(num)

// Extract the area code.
areaCode := ""
if geoCodeLength > 0 {
        areaCode = natSigNumber[0:geoCodeLength]
}
fmt.Println(areaCode)

About

golang port of Google's libphonenumber

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.9%
  • Makefile 0.1%