libphonenumber-csharp 8.13.34

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package libphonenumber-csharp --version 8.13.34
NuGet\Install-Package libphonenumber-csharp -Version 8.13.34
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.34" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add libphonenumber-csharp --version 8.13.34
#r "nuget: libphonenumber-csharp, 8.13.34"
#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.34

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

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 (102)

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.34 40,446 4/5/2024
8.13.33 59,550 3/25/2024
8.13.32 84,294 3/12/2024
8.13.31 110,318 2/25/2024
8.13.30 149,692 2/9/2024
8.13.29 135,629 1/26/2024
8.13.28 11,306 1/25/2024
8.13.27 359,194 12/21/2023
8.13.26 284,226 11/29/2023
8.13.25 191,018 11/20/2023
8.13.24 324,223 10/31/2023
8.13.23 210,294 10/17/2023
8.13.22 260,980 9/29/2023
8.13.21 139,996 9/20/2023
8.13.20 187,158 9/7/2023
8.13.19 217,468 8/22/2023
8.13.18 279,352 8/3/2023
8.13.17 114,548 7/27/2023
8.13.16 185,941 7/11/2023
8.13.15 1,577 7/11/2023
8.13.14 486,569 6/15/2023
8.13.13 1,615 6/15/2023
8.13.12 1,610 6/15/2023
8.13.11 817,590 4/27/2023
8.13.10 90,005 4/20/2023
8.13.9 168,817 4/10/2023
8.13.8 161,348 3/27/2023
8.13.7 535,589 3/3/2023
8.13.6 477,152 2/10/2023
8.13.5 219,087 1/29/2023
8.13.4 335,589 1/9/2023
8.13.3 328,957 12/22/2022
8.13.2 487,049 12/8/2022
8.13.1 225,733 11/28/2022
8.13.0 475,470 11/8/2022
8.12.57 615,887 10/14/2022
8.12.56 657,646 9/23/2022
8.12.55 419,889 9/9/2022
8.12.54 373,945 8/22/2022
8.12.53 406,291 8/8/2022
8.12.52 421,430 7/19/2022
8.12.51.1 140,330 7/12/2022
8.12.50 727,848 6/13/2022
8.12.49 305,505 6/1/2022
8.12.48 282,845 5/18/2022
8.12.47 6,006 5/18/2022
8.12.46 745,987 4/15/2022
8.12.45 1,046,194 3/14/2022
8.12.44 99,052 3/9/2022
8.12.43 418,449 2/14/2022
8.12.42 1,914 2/14/2022
8.12.41 1,926 2/14/2022
8.12.40 2,017 2/14/2022
8.12.39 1,990 2/14/2022
8.12.38 1,517,299 12/15/2021
8.12.37 2,411 12/15/2021
8.12.36 2,297 12/15/2021
8.12.35 2,106 12/15/2021
8.12.34 1,549,036 10/7/2021
8.12.33 372,305 9/23/2021
8.12.32 204,703 9/11/2021
8.12.31 2,449 9/11/2021
8.12.30 274,611 8/18/2021
8.12.29 2,204 8/18/2021
8.12.28 420,351 7/23/2021
8.12.27 231,886 7/8/2021
8.12.26 128,564 6/25/2021
8.12.25 129,838 6/16/2021
8.12.24 768,427 5/31/2021
8.12.23 227,522 5/13/2021
8.12.22 292,463 4/30/2021
8.12.21 323,554 4/8/2021
8.12.19 580,284 3/2/2021
8.12.18 435,183 2/10/2021
8.12.17 251,871 1/27/2021
8.12.16 140,012 1/15/2021
8.12.15 484,337 12/18/2020
8.12.14 298,954 12/4/2020
8.12.13 487,736 11/18/2020
8.12.11 1,037,253 10/9/2020
8.12.10 180,364 9/29/2020
8.12.9 391,109 9/2/2020
8.12.8 423,105 8/17/2020
8.12.7 478,141 7/21/2020
8.12.6 188,210 7/6/2020
8.12.5 2,567 7/6/2020
8.12.4 491,882 5/21/2020
8.12.3 186,832 5/8/2020
8.12.2 222,713 4/23/2020
8.12.1 470,811 3/31/2020
8.12.0 277,465 3/20/2020
8.11.5 291,807 3/3/2020
8.11.4 282,099 2/13/2020
8.11.3 273,072 2/3/2020
8.11.2 751,510 1/16/2020
8.11.1 372,466 12/12/2019
8.11.0 111,130 11/29/2019
8.10.23 85,223 11/18/2019
8.10.22 54,330 11/14/2019
8.10.21 393,510 10/17/2019
8.10.20 174,198 10/3/2019
8.10.19 174,422 9/21/2019
8.10.18 41,617 9/17/2019
8.10.17 279,691 8/16/2019
8.10.16 86,265 8/5/2019
8.10.15 191,225 7/18/2019
8.10.14 184,213 7/1/2019
8.10.13 427,879 5/31/2019
8.10.12 257,021 5/15/2019
8.10.11 81,786 5/7/2019
8.10.10 129,079 4/17/2019
8.10.9 250,115 4/5/2019
8.10.8 109,569 3/23/2019
8.10.7 146,264 3/11/2019
8.10.6 136,407 2/22/2019
8.10.5 442,223 2/8/2019
8.10.4 178,981 1/25/2019
8.10.3 123,367 1/11/2019
8.10.2 337,708 12/7/2018
8.10.1 64,476 11/29/2018
8.10.0 31,514 11/29/2018
8.9.16 351,319 10/19/2018
8.9.15 118,290 10/6/2018
8.9.14 86,409 9/21/2018
8.9.13 115,163 9/7/2018
8.9.12 224,438 8/25/2018
8.9.11 72,297 8/18/2018
8.9.10 296,846 7/12/2018
8.9.9 66,205 6/29/2018
8.9.8 70,200 6/15/2018
8.9.7 77,843 5/30/2018
8.9.6 119,326 5/16/2018
8.9.5 36,471 5/4/2018
8.9.4 99,276 4/17/2018
8.9.3 38,308 4/5/2018
8.9.2 68,820 3/19/2018
8.9.1 33,022 3/8/2018
8.9.0 48,761 2/22/2018
8.8.11 59,259 2/8/2018
8.8.10 36,425 1/25/2018
8.8.9 194,129 1/10/2018
8.8.8 147,377 12/8/2017
8.8.7 30,447 12/1/2017
8.8.6 65,288 11/17/2017
8.8.5 129,949 10/31/2017
8.8.4 132,398 10/17/2017
8.8.3 60,496 10/6/2017
8.8.2 44,693 9/22/2017
8.8.1 46,264 9/8/2017
8.8.0 88,609 8/22/2017
8.7.1 39,569 8/3/2017
8.7.0.1 54,314 7/21/2017
8.6.0.1 4,438 7/18/2017
8.6.0 39,599 7/10/2017
8.3.1.2 92,578 6/24/2017
8.3.1.1 125,498 3/13/2017
8.3.1 19,910 3/4/2017
7.7.4 318,591 11/13/2016
7.5.1 397,430 8/6/2016
7.2.5 399,746 2/11/2016
7.0.11 145,214 10/5/2015
7.0.9 79,016 8/16/2015
7.0.5.5 76,863 5/27/2015
7.0.5.4 3,133 5/23/2015
7.0.5.3 17,312 4/28/2015
7.0.5.1 2,933 4/27/2015
7.0.5 3,157 4/25/2015
4.10.0.62 274,478 8/21/2012
4.10.0.61 3,071 8/9/2012
4.10.0.59 3,236 7/27/2012
4.10.0.55 3,224 7/19/2012
4.9.0.52 3,121 7/13/2012
4.9.0.43 3,017 7/10/2012
4.9.0.42 3,134 7/9/2012
4.8.0.35 3,197 6/22/2012
4.8.0.33 3,974 6/16/2012
4.8.0.31 3,143 6/7/2012
4.8.0.30 3,647 5/31/2012
4.8.0.24 3,571 5/9/2012
4.7.0.21 4,404 4/28/2012
4.7.0.19 3,116 4/25/2012
4.6.0.16 3,449 3/30/2012
4.6.0.13 11,930 2/10/2012
4.5.0.9 6,427 1/30/2012
4.5.0.6 3,218 1/21/2012
4.5.0.4 4,086 1/20/2012
4.4.0.1 28,589 1/10/2012
3.8.0.400 3,262 11/28/2011
3.8.0.399 3,226 11/27/2011
3.8.0.394 3,256 11/24/2011
3.8.0.342 3,330 9/17/2011
3.7.1.342 3,249 9/17/2011
3.7.1.312 3,196 8/5/2011
3.7.1.306 7,878 8/5/2011