libphonenumber-csharp
8.13.43
Prefix Reserved
See the version list below for details.
dotnet add package libphonenumber-csharp --version 8.13.43
NuGet\Install-Package libphonenumber-csharp -Version 8.13.43
<PackageReference Include="libphonenumber-csharp" Version="8.13.43" />
paket add libphonenumber-csharp --version 8.13.43
#r "nuget: libphonenumber-csharp, 8.13.43"
// Install libphonenumber-csharp as a Cake Addin #addin nuget:?package=libphonenumber-csharp&version=8.13.43 // Install libphonenumber-csharp as a Cake Tool #tool nuget:?package=libphonenumber-csharp&version=8.13.43
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
Product | Versions 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. |
-
.NETStandard 2.0
- System.Collections.Immutable (>= 1.7.1)
- System.IO.Compression (>= 4.3.0)
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages (114)
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 (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.49 | 24,420 | 11/4/2024 |
8.13.48 | 55,426 | 10/23/2024 |
8.13.47 | 207,586 | 10/4/2024 |
8.13.46 | 95,293 | 9/25/2024 |
8.13.45 | 236,621 | 9/6/2024 |
8.13.44 | 158,185 | 8/26/2024 |
8.13.43 | 251,078 | 8/9/2024 |
8.13.42 | 173,452 | 7/26/2024 |
8.13.41 | 19,908 | 7/25/2024 |
8.13.40 | 370,509 | 7/3/2024 |
8.13.39 | 282,516 | 6/15/2024 |
8.13.38 | 159,263 | 6/5/2024 |
8.13.37 | 562,444 | 5/17/2024 |
8.13.36 | 198,999 | 5/3/2024 |
8.13.35 | 298,521 | 4/19/2024 |
8.13.34 | 309,574 | 4/5/2024 |
8.13.33 | 265,746 | 3/25/2024 |
8.13.32 | 253,136 | 3/12/2024 |
8.13.31 | 228,019 | 2/25/2024 |
8.13.30 | 343,930 | 2/9/2024 |
8.13.29 | 326,375 | 1/26/2024 |
8.13.28 | 20,789 | 1/25/2024 |
8.13.27 | 663,755 | 12/21/2023 |
8.13.26 | 489,798 | 11/29/2023 |
8.13.25 | 326,953 | 11/20/2023 |
8.13.24 | 577,428 | 10/31/2023 |
8.13.23 | 340,876 | 10/17/2023 |
8.13.22 | 398,715 | 9/29/2023 |
8.13.21 | 198,780 | 9/20/2023 |
8.13.20 | 315,888 | 9/7/2023 |
8.13.19 | 308,846 | 8/22/2023 |
8.13.18 | 391,085 | 8/3/2023 |
8.13.17 | 136,488 | 7/27/2023 |
8.13.16 | 225,016 | 7/11/2023 |
8.13.15 | 1,661 | 7/11/2023 |
8.13.14 | 674,541 | 6/15/2023 |
8.13.13 | 1,699 | 6/15/2023 |
8.13.12 | 1,712 | 6/15/2023 |
8.13.11 | 1,077,005 | 4/27/2023 |
8.13.10 | 117,179 | 4/20/2023 |
8.13.9 | 202,168 | 4/10/2023 |
8.13.8 | 187,282 | 3/27/2023 |
8.13.7 | 726,260 | 3/3/2023 |
8.13.6 | 548,323 | 2/10/2023 |
8.13.5 | 246,264 | 1/29/2023 |
8.13.4 | 385,545 | 1/9/2023 |
8.13.3 | 419,597 | 12/22/2022 |
8.13.2 | 673,558 | 12/8/2022 |
8.13.1 | 253,433 | 11/28/2022 |
8.13.0 | 537,692 | 11/8/2022 |
8.12.57 | 781,200 | 10/14/2022 |
8.12.56 | 797,246 | 9/23/2022 |
8.12.55 | 500,006 | 9/9/2022 |
8.12.54 | 424,694 | 8/22/2022 |
8.12.53 | 474,790 | 8/8/2022 |
8.12.52 | 482,582 | 7/19/2022 |
8.12.51.1 | 153,908 | 7/12/2022 |
8.12.50 | 820,586 | 6/13/2022 |
8.12.49 | 384,825 | 6/1/2022 |
8.12.48 | 310,547 | 5/18/2022 |
8.12.47 | 6,399 | 5/18/2022 |
8.12.46 | 811,055 | 4/15/2022 |
8.12.45 | 1,130,105 | 3/14/2022 |
8.12.44 | 103,722 | 3/9/2022 |
8.12.43 | 491,909 | 2/14/2022 |
8.12.42 | 1,968 | 2/14/2022 |
8.12.41 | 1,975 | 2/14/2022 |
8.12.40 | 2,065 | 2/14/2022 |
8.12.39 | 2,039 | 2/14/2022 |
8.12.38 | 1,715,399 | 12/15/2021 |
8.12.37 | 2,501 | 12/15/2021 |
8.12.36 | 2,367 | 12/15/2021 |
8.12.35 | 2,152 | 12/15/2021 |
8.12.34 | 1,791,226 | 10/7/2021 |
8.12.33 | 415,723 | 9/23/2021 |
8.12.32 | 224,032 | 9/11/2021 |
8.12.31 | 2,517 | 9/11/2021 |
8.12.30 | 299,021 | 8/18/2021 |
8.12.29 | 2,302 | 8/18/2021 |
8.12.28 | 468,182 | 7/23/2021 |
8.12.27 | 260,456 | 7/8/2021 |
8.12.26 | 146,881 | 6/25/2021 |
8.12.25 | 137,152 | 6/16/2021 |
8.12.24 | 837,507 | 5/31/2021 |
8.12.23 | 247,116 | 5/13/2021 |
8.12.22 | 367,116 | 4/30/2021 |
8.12.21 | 357,374 | 4/8/2021 |
8.12.19 | 610,574 | 3/2/2021 |
8.12.18 | 490,269 | 2/10/2021 |
8.12.17 | 262,053 | 1/27/2021 |
8.12.16 | 147,695 | 1/15/2021 |
8.12.15 | 508,424 | 12/18/2020 |
8.12.14 | 321,850 | 12/4/2020 |
8.12.13 | 511,828 | 11/18/2020 |
8.12.11 | 1,085,424 | 10/9/2020 |
8.12.10 | 190,334 | 9/29/2020 |
8.12.9 | 412,262 | 9/2/2020 |
8.12.8 | 455,852 | 8/17/2020 |
8.12.7 | 508,590 | 7/21/2020 |
8.12.6 | 193,598 | 7/6/2020 |
8.12.5 | 2,634 | 7/6/2020 |
8.12.4 | 520,984 | 5/21/2020 |
8.12.3 | 200,005 | 5/8/2020 |
8.12.2 | 232,637 | 4/23/2020 |
8.12.1 | 523,920 | 3/31/2020 |
8.12.0 | 290,559 | 3/20/2020 |
8.11.5 | 310,203 | 3/3/2020 |
8.11.4 | 296,224 | 2/13/2020 |
8.11.3 | 285,666 | 2/3/2020 |
8.11.2 | 860,037 | 1/16/2020 |
8.11.1 | 394,974 | 12/12/2019 |
8.11.0 | 121,691 | 11/29/2019 |
8.10.23 | 93,712 | 11/18/2019 |
8.10.22 | 55,254 | 11/14/2019 |
8.10.21 | 430,548 | 10/17/2019 |
8.10.20 | 192,119 | 10/3/2019 |
8.10.19 | 190,492 | 9/21/2019 |
8.10.18 | 45,291 | 9/17/2019 |
8.10.17 | 291,790 | 8/16/2019 |
8.10.16 | 91,103 | 8/5/2019 |
8.10.15 | 198,267 | 7/18/2019 |
8.10.14 | 209,073 | 7/1/2019 |
8.10.13 | 443,116 | 5/31/2019 |
8.10.12 | 267,477 | 5/15/2019 |
8.10.11 | 84,692 | 5/7/2019 |
8.10.10 | 134,519 | 4/17/2019 |
8.10.9 | 253,702 | 4/5/2019 |
8.10.8 | 113,193 | 3/23/2019 |
8.10.7 | 148,082 | 3/11/2019 |
8.10.6 | 145,845 | 2/22/2019 |
8.10.5 | 482,526 | 2/8/2019 |
8.10.4 | 191,906 | 1/25/2019 |
8.10.3 | 134,739 | 1/11/2019 |
8.10.2 | 365,531 | 12/7/2018 |
8.10.1 | 64,940 | 11/29/2018 |
8.10.0 | 36,952 | 11/29/2018 |
8.9.16 | 500,213 | 10/19/2018 |
8.9.15 | 120,819 | 10/6/2018 |
8.9.14 | 92,733 | 9/21/2018 |
8.9.13 | 117,077 | 9/7/2018 |
8.9.12 | 226,554 | 8/25/2018 |
8.9.11 | 88,758 | 8/18/2018 |
8.9.10 | 313,814 | 7/12/2018 |
8.9.9 | 77,248 | 6/29/2018 |
8.9.8 | 71,144 | 6/15/2018 |
8.9.7 | 83,935 | 5/30/2018 |
8.9.6 | 129,309 | 5/16/2018 |
8.9.5 | 37,410 | 5/4/2018 |
8.9.4 | 106,263 | 4/17/2018 |
8.9.3 | 40,024 | 4/5/2018 |
8.9.2 | 71,620 | 3/19/2018 |
8.9.1 | 34,123 | 3/8/2018 |
8.9.0 | 49,641 | 2/22/2018 |
8.8.11 | 62,906 | 2/8/2018 |
8.8.10 | 36,792 | 1/25/2018 |
8.8.9 | 215,407 | 1/10/2018 |
8.8.8 | 149,375 | 12/8/2017 |
8.8.7 | 30,599 | 12/1/2017 |
8.8.6 | 68,667 | 11/17/2017 |
8.8.5 | 158,940 | 10/31/2017 |
8.8.4 | 137,999 | 10/17/2017 |
8.8.3 | 63,702 | 10/6/2017 |
8.8.2 | 49,418 | 9/22/2017 |
8.8.1 | 47,420 | 9/8/2017 |
8.8.0 | 112,522 | 8/22/2017 |
8.7.1 | 43,219 | 8/3/2017 |
8.7.0.1 | 55,595 | 7/21/2017 |
8.6.0.1 | 4,698 | 7/18/2017 |
8.6.0 | 42,321 | 7/10/2017 |
8.3.1.2 | 98,001 | 6/24/2017 |
8.3.1.1 | 127,928 | 3/13/2017 |
8.3.1 | 20,881 | 3/4/2017 |
7.7.4 | 333,346 | 11/13/2016 |
7.5.1 | 414,013 | 8/6/2016 |
7.2.5 | 438,995 | 2/11/2016 |
7.0.11 | 151,701 | 10/5/2015 |
7.0.9 | 81,850 | 8/16/2015 |
7.0.5.5 | 79,570 | 5/27/2015 |
7.0.5.4 | 3,186 | 5/23/2015 |
7.0.5.3 | 18,312 | 4/28/2015 |
7.0.5.1 | 2,996 | 4/27/2015 |
7.0.5 | 3,253 | 4/25/2015 |
4.10.0.62 | 299,530 | 8/21/2012 |
4.10.0.61 | 3,121 | 8/9/2012 |
4.10.0.59 | 3,295 | 7/27/2012 |
4.10.0.55 | 3,288 | 7/19/2012 |
4.9.0.52 | 3,199 | 7/13/2012 |
4.9.0.43 | 3,091 | 7/10/2012 |
4.9.0.42 | 3,213 | 7/9/2012 |
4.8.0.35 | 3,336 | 6/22/2012 |
4.8.0.33 | 4,065 | 6/16/2012 |
4.8.0.31 | 3,199 | 6/7/2012 |
4.8.0.30 | 3,900 | 5/31/2012 |
4.8.0.24 | 3,628 | 5/9/2012 |
4.7.0.21 | 4,477 | 4/28/2012 |
4.7.0.19 | 3,181 | 4/25/2012 |
4.6.0.16 | 3,517 | 3/30/2012 |
4.6.0.13 | 13,219 | 2/10/2012 |
4.5.0.9 | 6,879 | 1/30/2012 |
4.5.0.6 | 3,270 | 1/21/2012 |
4.5.0.4 | 4,148 | 1/20/2012 |
4.4.0.1 | 30,125 | 1/10/2012 |
3.8.0.400 | 3,332 | 11/28/2011 |
3.8.0.399 | 3,281 | 11/27/2011 |
3.8.0.394 | 3,310 | 11/24/2011 |
3.8.0.342 | 3,403 | 9/17/2011 |
3.7.1.342 | 3,298 | 9/17/2011 |
3.7.1.312 | 3,254 | 8/5/2011 |
3.7.1.306 | 11,514 | 8/5/2011 |