libphonenumber-csharp 8.13.19

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.19
                    
NuGet\Install-Package libphonenumber-csharp -Version 8.13.19
                    
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.19" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="libphonenumber-csharp" Version="8.13.19" />
                    
Directory.Packages.props
<PackageReference Include="libphonenumber-csharp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add libphonenumber-csharp --version 8.13.19
                    
#r "nuget: libphonenumber-csharp, 8.13.19"
                    
#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.
#addin nuget:?package=libphonenumber-csharp&version=8.13.19
                    
Install libphonenumber-csharp as a Cake Addin
#tool nuget:?package=libphonenumber-csharp&version=8.13.19
                    
Install libphonenumber-csharp as a Cake Tool

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.

Phonenumber metadata is updated in the Google repo approximately every two weeks. This library is manually updated to include the latest metadata, usually within a day or so. There is currently plans to fully automate this https://github.com/twcclegg/libphonenumber-csharp/issues/172

Example

  var phoneNumberUtil = PhoneNumbers.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");

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 phonenumber 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

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

Available on NuGet as package libphonenumber-csharp.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 (124)

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

Package Downloads
N3O.Umbraco.Validation

TODO

OrchardCore.Users

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. The Users module adds user management functionality.

OrchardCore.Application.Cms.Core.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with TheAdmin theme but without any front-end Themes.

TheTheme

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. The default Theme - Can be used as base theme for new themes.

OrchardCore.Application.Cms.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with following themes. - TheAdmin Theme - SafeMode Theme - TheAgency Theme - TheBlog Theme - TheComingSoon Theme - TheTheme theme

GitHub repositories (5)

Showing the top 5 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.
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
notifo-io/notifo
Multi channel notification service for collaboration tools, e-commerce, news service and more.
shr670377723/CommunityServer-master
Version Downloads Last updated
9.0.4 2,122 2 days ago
9.0.3 44,469 16 days ago
9.0.2 95,896 a month ago
9.0.1 33,188 a month ago
8.13.55 478,180 2 months ago
8.13.54 190,772 3 months ago
8.13.53 150,787 3 months ago
8.13.52 587,074 4 months ago
8.13.51 250,385 5 months ago
8.13.50 438,712 5 months ago
8.13.49 308,304 6 months ago
8.13.48 160,648 6 months ago
8.13.47 659,655 7 months ago
8.13.46 264,339 7 months ago
8.13.45 491,609 8 months ago
8.13.44 328,302 8 months ago
8.13.43 489,801 9 months ago
8.13.42 260,396 9 months ago
8.13.41 28,010 9 months ago
8.13.40 610,880 10 months ago
8.13.39 436,994 6/15/2024
8.13.38 228,517 6/5/2024
8.13.37 1,022,800 5/17/2024
8.13.36 296,429 5/3/2024
8.13.35 407,405 4/19/2024
8.13.34 413,387 4/5/2024
8.13.33 434,381 3/25/2024
8.13.32 410,015 3/12/2024
8.13.31 276,728 2/25/2024
8.13.30 420,611 2/9/2024
8.13.29 431,430 1/26/2024
8.13.28 24,411 1/25/2024
8.13.27 826,537 12/21/2023
8.13.26 632,097 11/29/2023
8.13.25 383,041 11/20/2023
8.13.24 711,737 10/31/2023
8.13.23 441,453 10/17/2023
8.13.22 447,995 9/29/2023
8.13.21 233,051 9/20/2023
8.13.20 364,868 9/7/2023
8.13.19 354,996 8/22/2023
8.13.18 426,204 8/3/2023
8.13.17 150,479 7/27/2023
8.13.16 244,850 7/11/2023
8.13.15 2,059 7/11/2023
8.13.14 734,506 6/15/2023
8.13.13 2,025 6/15/2023
8.13.12 2,012 6/15/2023
8.13.11 1,250,166 4/27/2023
8.13.10 133,188 4/20/2023
8.13.9 245,693 4/10/2023
8.13.8 208,000 3/27/2023
8.13.7 881,532 3/3/2023
8.13.6 580,894 2/10/2023
8.13.5 255,853 1/29/2023
8.13.4 419,738 1/9/2023
8.13.3 488,414 12/22/2022
8.13.2 724,668 12/8/2022
8.13.1 264,912 11/28/2022
8.13.0 573,270 11/8/2022
8.12.57 886,590 10/14/2022
8.12.56 857,555 9/23/2022
8.12.55 549,783 9/9/2022
8.12.54 459,620 8/22/2022
8.12.53 525,532 8/8/2022
8.12.52 517,127 7/19/2022
8.12.51.1 159,050 7/12/2022
8.12.50 876,303 6/13/2022
8.12.49 414,605 6/1/2022
8.12.48 326,934 5/18/2022
8.12.47 6,807 5/18/2022
8.12.46 873,565 4/15/2022
8.12.45 1,187,916 3/14/2022
8.12.44 105,885 3/9/2022
8.12.43 574,455 2/14/2022
8.12.42 2,033 2/14/2022
8.12.41 2,047 2/14/2022
8.12.40 2,142 2/14/2022
8.12.39 2,109 2/14/2022
8.12.38 1,840,616 12/15/2021
8.12.37 2,598 12/15/2021
8.12.36 2,467 12/15/2021
8.12.35 2,231 12/15/2021
8.12.34 1,945,632 10/7/2021
8.12.33 435,784 9/23/2021
8.12.32 238,410 9/11/2021
8.12.31 2,585 9/11/2021
8.12.30 311,596 8/18/2021
8.12.29 2,374 8/18/2021
8.12.28 497,268 7/23/2021
8.12.27 269,531 7/8/2021
8.12.26 175,219 6/25/2021
8.12.25 143,381 6/16/2021
8.12.24 875,666 5/31/2021
8.12.23 261,193 5/13/2021
8.12.22 438,852 4/30/2021
8.12.21 390,940 4/8/2021
8.12.19 635,934 3/2/2021
8.12.18 532,357 2/10/2021
8.12.17 268,332 1/27/2021
8.12.16 150,156 1/15/2021
8.12.15 526,311 12/18/2020
8.12.14 335,868 12/4/2020
8.12.13 520,275 11/18/2020
8.12.11 1,117,036 10/9/2020
8.12.10 196,405 9/29/2020
8.12.9 426,099 9/2/2020
8.12.8 474,763 8/17/2020
8.12.7 536,089 7/21/2020
8.12.6 197,259 7/6/2020
8.12.5 2,696 7/6/2020
8.12.4 545,424 5/21/2020
8.12.3 209,262 5/8/2020
8.12.2 239,099 4/23/2020
8.12.1 554,318 3/31/2020
8.12.0 294,011 3/20/2020
8.11.5 321,985 3/3/2020
8.11.4 308,044 2/13/2020
8.11.3 294,026 2/3/2020
8.11.2 881,200 1/16/2020
8.11.1 415,986 12/12/2019
8.11.0 133,547 11/29/2019
8.10.23 98,043 11/18/2019
8.10.22 55,874 11/14/2019
8.10.21 454,323 10/17/2019
8.10.20 204,999 10/3/2019
8.10.19 204,852 9/21/2019
8.10.18 48,441 9/17/2019
8.10.17 302,669 8/16/2019
8.10.16 94,932 8/5/2019
8.10.15 204,520 7/18/2019
8.10.14 233,974 7/1/2019
8.10.13 465,141 5/31/2019
8.10.12 273,809 5/15/2019
8.10.11 86,040 5/7/2019
8.10.10 137,922 4/17/2019
8.10.9 256,310 4/5/2019
8.10.8 116,770 3/23/2019
8.10.7 149,655 3/11/2019
8.10.6 153,430 2/22/2019
8.10.5 504,505 2/8/2019
8.10.4 202,646 1/25/2019
8.10.3 144,014 1/11/2019
8.10.2 382,858 12/7/2018
8.10.1 65,088 11/29/2018
8.10.0 40,291 11/29/2018
8.9.16 628,734 10/19/2018
8.9.15 122,073 10/6/2018
8.9.14 94,591 9/21/2018
8.9.13 117,697 9/7/2018
8.9.12 229,992 8/25/2018
8.9.11 103,683 8/18/2018
8.9.10 324,987 7/12/2018
8.9.9 87,431 6/29/2018
8.9.8 71,672 6/15/2018
8.9.7 89,108 5/30/2018
8.9.6 138,239 5/16/2018
8.9.5 39,107 5/4/2018
8.9.4 109,917 4/17/2018
8.9.3 41,729 4/5/2018
8.9.2 73,857 3/19/2018
8.9.1 35,122 3/8/2018
8.9.0 50,014 2/22/2018
8.8.11 64,890 2/8/2018
8.8.10 37,303 1/25/2018
8.8.9 229,568 1/10/2018
8.8.8 150,872 12/8/2017
8.8.7 30,812 12/1/2017
8.8.6 70,930 11/17/2017
8.8.5 186,292 10/31/2017
8.8.4 141,884 10/17/2017
8.8.3 66,703 10/6/2017
8.8.2 54,043 9/22/2017
8.8.1 48,294 9/8/2017
8.8.0 137,899 8/22/2017
8.7.1 46,421 8/3/2017
8.7.0.1 57,171 7/21/2017
8.6.0.1 4,837 7/18/2017
8.6.0 45,989 7/10/2017
8.3.1.2 101,043 6/24/2017
8.3.1.1 130,284 3/13/2017
8.3.1 21,648 3/4/2017
7.7.4 347,613 11/13/2016
7.5.1 436,241 8/6/2016
7.2.5 468,092 2/11/2016
7.0.11 156,917 10/5/2015
7.0.9 84,985 8/16/2015
7.0.5.5 80,427 5/27/2015
7.0.5.4 3,327 5/23/2015
7.0.5.3 19,020 4/28/2015
7.0.5.1 3,142 4/27/2015
7.0.5 3,402 4/25/2015
4.10.0.62 321,346 8/21/2012
4.10.0.61 3,268 8/9/2012
4.10.0.59 3,439 7/27/2012
4.10.0.55 3,435 7/19/2012
4.9.0.52 3,356 7/13/2012
4.9.0.43 3,236 7/10/2012
4.9.0.42 3,360 7/9/2012
4.8.0.35 4,417 6/22/2012
4.8.0.33 4,254 6/16/2012
4.8.0.31 3,350 6/7/2012
4.8.0.30 4,198 5/31/2012
4.8.0.24 3,778 5/9/2012
4.7.0.21 4,669 4/28/2012
4.7.0.19 3,348 4/25/2012
4.6.0.16 3,685 3/30/2012
4.6.0.13 14,144 2/10/2012
4.5.0.9 7,287 1/30/2012
4.5.0.6 3,425 1/21/2012
4.5.0.4 4,301 1/20/2012
4.4.0.1 32,282 1/10/2012
3.8.0.400 3,503 11/28/2011
3.8.0.399 3,431 11/27/2011
3.8.0.394 3,502 11/24/2011
3.8.0.342 3,556 9/17/2011
3.7.1.342 3,451 9/17/2011
3.7.1.312 3,409 8/5/2011
3.7.1.306 17,632 8/5/2011