libphonenumber-csharp 8.13.35

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package libphonenumber-csharp --version 8.13.35
NuGet\Install-Package libphonenumber-csharp -Version 8.13.35
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="libphonenumber-csharp" Version="8.13.35" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add libphonenumber-csharp --version 8.13.35
#r "nuget: libphonenumber-csharp, 8.13.35"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install libphonenumber-csharp as a Cake Addin
#addin nuget:?package=libphonenumber-csharp&version=8.13.35

// Install libphonenumber-csharp as a Cake Tool
#tool nuget:?package=libphonenumber-csharp&version=8.13.35

Build status codecov NuGet

C# port of Google's libphonenumber library.

The code was rewritten from the Java source mostly unchanged, please refer to the original documentation for sample code and API documentation.

The original Apache License 2.0 was preserved.

See this for details about the port.

Phone number metadata is updated in the Google repo approximately every two weeks. This library is automatically updated by a scheduled github action to include the latest metadata, usually within a day.

Installation

Run the following command to add this library to your project

dotnet add package libphonenumber-csharp

Available on NuGet as package libphonenumber-csharp.

Examples

Parsing a phone number

using PhoneNumbers;

var phoneNumberUtil = PhoneNumberUtil.GetInstance();
var e164PhoneNumber = "+44 117 496 0123";
var nationalPhoneNumber = "2024561111";
var smsShortNumber = "83835";
var phoneNumber = phoneNumberUtil.Parse(e164PhoneNumber, null);
phoneNumber = phoneNumberUtil.Parse(nationalPhoneNumber, "US");
phoneNumber = phoneNumberUtil.Parse(smsShortNumber, "US");

Formatting a phone number

using PhoneNumbers;

var phoneNumberUtil = PhoneNumberUtil.GetInstance();
var phoneNumber = phoneNumberUtil.Parse("+14156667777", "US");
var formattedPhoneNumber = phoneNumberUtil.Format(phoneNumber, PhoneNumberFormat.INTERNATIONAL);
var formattedPhoneNumberNational = phoneNumberUtil.Format(phoneNumber, PhoneNumberFormat.NATIONAL);

Console.WriteLine(formattedPhoneNumber.ToString()); // +1 415-666-7777
Console.WriteLine(formattedPhoneNumberNational.ToString()); // (415) 666-7777

Check if a phone number is valid

using PhoneNumbers;

var phoneNumberUtil = PhoneNumberUtil.GetInstance();
var phoneNumber = phoneNumberUtil.Parse("+14156667777", "US");
var isValid = phoneNumberUtil.IsValidNumber(phoneNumber);

Console.WriteLine(isValid); // true

Get the type of a phone number

using PhoneNumbers;

var phoneNumberUtil = PhoneNumberUtil.GetInstance();
var phoneNumber = phoneNumberUtil.Parse("+14156667777", "US");
var numberType = phoneNumberUtil.GetNumberType(phoneNumber);

Console.WriteLine(numberType); // PhoneNumberType.FIXED_LINE_OR_MOBILE

See PhoneNumberType.cs for the various possible types of phone numbers

Get the region code for a phone number

using PhoneNumbers;

var phoneNumberUtil = PhoneNumberUtil.GetInstance();
var phoneNumber = phoneNumberUtil.Parse("+14156667777", null);
var regionCode = phoneNumberUtil.GetRegionCodeForNumber(phoneNumber);

Console.WriteLine(regionCode); // US

Features

  • Parsing/formatting/validating phone numbers for all countries/regions of the world.
  • GetNumberType - gets the type of the number based on the number itself; able to distinguish Fixed-line, Mobile, Toll-free, Premium Rate, Shared Cost, VoIP and Personal Numbers (whenever feasible).
  • IsNumberMatch - gets a confidence level on whether two numbers could be the same.
  • GetExampleNumber/GetExampleNumberByType - provides valid example numbers for 218 countries/regions, with the option of specifying which type of example phone number is needed.
  • IsPossibleNumber - quickly guessing whether a number is a possible phone number by using only the length information, much faster than a full validation.
  • AsYouTypeFormatter - formats phone numbers on-the-fly when users enter each digit.
  • FindNumbers - finds numbers in text input

See PhoneNumberUtil.cs for the various methods and properties available.

ToDo

  • port read / write source xml data to binary for better performance and smaller .nupkg size (WIP)
  • update / add / port new unit tests and logging from java source

How to unfold automatic generated files

  • Install Jetbrains - Resharper for Visual Studio
  • File by file, right click and "Cleanup code"
  • Check the unfolded file

Running tests locally

To run tests locally, you will need a zip version of the geocoding.zip file stored in the resources folder and testgeocoding.zip file stored in the resources/test folder.

On linux, you can run the following commands to generate the zip accordingly

(cd resources/geocoding; zip -r ../../resources/geocoding.zip *)
(cd resources/test/geocoding; zip -r ../../../resources/test/testgeocoding.zip *)

For windows, you can use the following powershell script

Compress-Archive -Path "resources\geocoding\*" -DestinationPath "resources\geocoding.zip"
Compress-Archive -Path "resources\test\geocoding\*" -DestinationPath "resources\test\testgeocoding.zip"

Contributing

See CONTRIBUTING.md

Donations

Buy me a beer

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (100)

Showing the top 5 NuGet packages that depend on libphonenumber-csharp:

Package Downloads
N3O.Umbraco.Validation

TODO

GlobalPhone

Package Description

LineTen.Core

LineTen core interfaces and helper classes

Flynk.Common.Utils

Utilities for generic applications

horaios.de.Charis.Objects

Package Description

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on libphonenumber-csharp:

Repository Stars
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
notifo-io/notifo
Multi channel notification service for collaboration tools, e-commerce, news service and more.
shr670377723/CommunityServer-master
Version Downloads Last updated
8.13.36 7,004 5/3/2024
8.13.35 46,877 4/19/2024
8.13.34 102,965 4/5/2024
8.13.33 83,802 3/25/2024
8.13.32 105,210 3/12/2024
8.13.31 132,640 2/25/2024
8.13.30 175,274 2/9/2024
8.13.29 157,253 1/26/2024
8.13.28 12,763 1/25/2024
8.13.27 396,342 12/21/2023
8.13.26 308,628 11/29/2023
8.13.25 214,707 11/20/2023
8.13.24 346,986 10/31/2023
8.13.23 220,823 10/17/2023
8.13.22 276,685 9/29/2023
8.13.21 146,640 9/20/2023
8.13.20 199,053 9/7/2023
8.13.19 227,130 8/22/2023
8.13.18 289,954 8/3/2023
8.13.17 116,764 7/27/2023
8.13.16 192,075 7/11/2023
8.13.15 1,582 7/11/2023
8.13.14 511,952 6/15/2023
8.13.13 1,622 6/15/2023
8.13.12 1,615 6/15/2023
8.13.11 843,807 4/27/2023
8.13.10 92,503 4/20/2023
8.13.9 172,226 4/10/2023
8.13.8 163,405 3/27/2023
8.13.7 554,182 3/3/2023
8.13.6 484,973 2/10/2023
8.13.5 222,205 1/29/2023
8.13.4 344,097 1/9/2023
8.13.3 336,786 12/22/2022
8.13.2 506,659 12/8/2022
8.13.1 227,908 11/28/2022
8.13.0 481,588 11/8/2022
8.12.57 631,742 10/14/2022
8.12.56 673,422 9/23/2022
8.12.55 425,900 9/9/2022
8.12.54 378,017 8/22/2022
8.12.53 412,698 8/8/2022
8.12.52 427,252 7/19/2022
8.12.51.1 141,726 7/12/2022
8.12.50 737,362 6/13/2022
8.12.49 310,930 6/1/2022
8.12.48 285,497 5/18/2022
8.12.47 6,031 5/18/2022
8.12.46 752,361 4/15/2022
8.12.45 1,053,401 3/14/2022
8.12.44 99,402 3/9/2022
8.12.43 425,804 2/14/2022
8.12.42 1,916 2/14/2022
8.12.41 1,928 2/14/2022
8.12.40 2,019 2/14/2022
8.12.39 1,994 2/14/2022
8.12.38 1,538,106 12/15/2021
8.12.37 2,418 12/15/2021
8.12.36 2,310 12/15/2021
8.12.35 2,108 12/15/2021
8.12.34 1,574,192 10/7/2021
8.12.33 375,111 9/23/2021
8.12.32 206,930 9/11/2021
8.12.31 2,451 9/11/2021
8.12.30 278,201 8/18/2021
8.12.29 2,206 8/18/2021
8.12.28 424,472 7/23/2021
8.12.27 237,853 7/8/2021
8.12.26 129,859 6/25/2021
8.12.25 130,434 6/16/2021
8.12.24 774,110 5/31/2021
8.12.23 229,490 5/13/2021
8.12.22 298,347 4/30/2021
8.12.21 326,694 4/8/2021
8.12.19 583,748 3/2/2021
8.12.18 441,360 2/10/2021
8.12.17 252,823 1/27/2021
8.12.16 140,652 1/15/2021
8.12.15 486,808 12/18/2020
8.12.14 301,527 12/4/2020
8.12.13 490,698 11/18/2020
8.12.11 1,042,186 10/9/2020
8.12.10 181,042 9/29/2020
8.12.9 393,668 9/2/2020
8.12.8 426,194 8/17/2020
8.12.7 480,539 7/21/2020
8.12.6 189,150 7/6/2020
8.12.5 2,569 7/6/2020
8.12.4 494,788 5/21/2020
8.12.3 188,487 5/8/2020
8.12.2 223,519 4/23/2020
8.12.1 476,820 3/31/2020
8.12.0 279,073 3/20/2020
8.11.5 293,579 3/3/2020
8.11.4 283,858 2/13/2020
8.11.3 274,114 2/3/2020
8.11.2 762,930 1/16/2020
8.11.1 374,460 12/12/2019
8.11.0 112,310 11/29/2019
8.10.23 86,131 11/18/2019
8.10.22 54,513 11/14/2019
8.10.21 396,482 10/17/2019
8.10.20 176,592 10/3/2019
8.10.19 175,829 9/21/2019
8.10.18 41,778 9/17/2019
8.10.17 280,955 8/16/2019
8.10.16 86,783 8/5/2019
8.10.15 192,002 7/18/2019
8.10.14 186,419 7/1/2019
8.10.13 429,134 5/31/2019
8.10.12 258,328 5/15/2019
8.10.11 81,921 5/7/2019
8.10.10 129,652 4/17/2019
8.10.9 250,668 4/5/2019
8.10.8 109,811 3/23/2019
8.10.7 146,444 3/11/2019
8.10.6 137,481 2/22/2019
8.10.5 445,762 2/8/2019
8.10.4 180,168 1/25/2019
8.10.3 124,684 1/11/2019
8.10.2 340,889 12/7/2018
8.10.1 64,503 11/29/2018
8.10.0 31,893 11/29/2018
8.9.16 361,492 10/19/2018
8.9.15 118,631 10/6/2018
8.9.14 87,416 9/21/2018
8.9.13 115,545 9/7/2018
8.9.12 224,524 8/25/2018
8.9.11 73,673 8/18/2018
8.9.10 298,353 7/12/2018
8.9.9 67,598 6/29/2018
8.9.8 70,269 6/15/2018
8.9.7 78,323 5/30/2018
8.9.6 120,700 5/16/2018
8.9.5 36,589 5/4/2018
8.9.4 99,976 4/17/2018
8.9.3 38,603 4/5/2018
8.9.2 69,106 3/19/2018
8.9.1 33,116 3/8/2018
8.9.0 48,818 2/22/2018
8.8.11 59,668 2/8/2018
8.8.10 36,433 1/25/2018
8.8.9 195,695 1/10/2018
8.8.8 147,529 12/8/2017
8.8.7 30,464 12/1/2017
8.8.6 65,709 11/17/2017
8.8.5 132,204 10/31/2017
8.8.4 132,914 10/17/2017
8.8.3 60,837 10/6/2017
8.8.2 45,138 9/22/2017
8.8.1 46,400 9/8/2017
8.8.0 90,840 8/22/2017
8.7.1 39,851 8/3/2017
8.7.0.1 54,364 7/21/2017
8.6.0.1 4,445 7/18/2017
8.6.0 39,864 7/10/2017
8.3.1.2 93,511 6/24/2017
8.3.1.1 125,651 3/13/2017
8.3.1 20,011 3/4/2017
7.7.4 319,455 11/13/2016
7.5.1 399,018 8/6/2016
7.2.5 403,888 2/11/2016
7.0.11 145,783 10/5/2015
7.0.9 79,255 8/16/2015
7.0.5.5 77,333 5/27/2015
7.0.5.4 3,140 5/23/2015
7.0.5.3 17,369 4/28/2015
7.0.5.1 2,940 4/27/2015
7.0.5 3,170 4/25/2015
4.10.0.62 277,052 8/21/2012
4.10.0.61 3,080 8/9/2012
4.10.0.59 3,245 7/27/2012
4.10.0.55 3,232 7/19/2012
4.9.0.52 3,130 7/13/2012
4.9.0.43 3,026 7/10/2012
4.9.0.42 3,145 7/9/2012
4.8.0.35 3,206 6/22/2012
4.8.0.33 3,982 6/16/2012
4.8.0.31 3,150 6/7/2012
4.8.0.30 3,666 5/31/2012
4.8.0.24 3,578 5/9/2012
4.7.0.21 4,410 4/28/2012
4.7.0.19 3,123 4/25/2012
4.6.0.16 3,456 3/30/2012
4.6.0.13 12,095 2/10/2012
4.5.0.9 6,463 1/30/2012
4.5.0.6 3,225 1/21/2012
4.5.0.4 4,095 1/20/2012
4.4.0.1 28,735 1/10/2012
3.8.0.400 3,268 11/28/2011
3.8.0.399 3,233 11/27/2011
3.8.0.394 3,262 11/24/2011
3.8.0.342 3,337 9/17/2011
3.7.1.342 3,256 9/17/2011
3.7.1.312 3,203 8/5/2011
3.7.1.306 8,113 8/5/2011