PhoneNumberParser 2.13.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package PhoneNumberParser --version 2.13.3
                    
NuGet\Install-Package PhoneNumberParser -Version 2.13.3
                    
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="PhoneNumberParser" Version="2.13.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PhoneNumberParser" Version="2.13.3" />
                    
Directory.Packages.props
<PackageReference Include="PhoneNumberParser" />
                    
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 PhoneNumberParser --version 2.13.3
                    
#r "nuget: PhoneNumberParser, 2.13.3"
                    
#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.
#:package PhoneNumberParser@2.13.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PhoneNumberParser&version=2.13.3
                    
Install as a Cake Addin
#tool nuget:?package=PhoneNumberParser&version=2.13.3
                    
Install as a Cake Tool

Phone Number Parser

A library for parsing phone numbers, providing a number of benefits over a regular expression. For example greater validity of phone numbers including national destination codes (aka area codes) and subscriber numbers (aka line numbers) based upon published numbering plans for each country. Additional attributes such as the kind of phone number (Mobile, Geographic or Non-Geographic) are also included, and all parsing is performed locally within the library using embedded in-memory data files.

Builds for:

  • .NET 7.0
  • .NET Standard 2.1 - supports .NET Core 3.0 or later and .NET 5.0 or later
  • .NET Standard 2.0 - supports .NET Framework 4.6.2 or later (.NET Framework projects will need to be built with C# 9.0 or later)
using PhoneNumbers;

// Parsing a phone number is achieved via the `PhoneNumber.Parse` method (or alternatively via `PhoneNumber.TryParse`). Any spaces, hyphens or other formatting in the input string is ignored.
var phoneNumber = PhoneNumber.Parse("+441142726444"); // or Parse("01142726444", "GB")

phoneNumber.NationalDestinationCode;     // 114 (aka area code)
phoneNumber.SubscriberNumber;            // 2726444 (aka line number)

// Country specific information is accessible via the Country property, for example:
phoneNumber.Country.CallingCode;         // +44
phoneNumber.Country.Iso3166Code;         // GB
phoneNumber.Country.Name;                // United Kingdom
phoneNumber.Country.TrunkPrefix;         // 0

// There are 3 subclasses of PhoneNumber, the correct type to cast to can be determined by inspecting the PhoneNumberKind property. Cast as appropriate to access additional properties.
var geographicPhoneNumber = (GeographicPhoneNumber)phoneNumber;
geographicPhoneNumber.GeographicArea;    // Sheffield

// The phone number can be formatted in the following ways, the default format output can be round tripped via `PhoneNumber.Parse()` to make database persistence straightforward.
phoneNumber.ToString();                  // +441142726444      (defaults to E.164 format)
phoneNumber.ToString("E.164");           // +441142726444      (E.164 format)
phoneNumber.ToString("E.123");           // +44 114 2726444    (E.123 international format)
phoneNumber.ToString("N");               // (0114) 2726444     (E.123 national notation format)
phoneNumber.ToString("RFC3966");         // tel:+44-114-272644 (RFC3966 format)
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 is compatible. 
.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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.2.0 3,654 5/22/2025
4.1.4 1,035 5/15/2025
4.1.3 2,553 4/17/2025
4.1.2 894 4/10/2025
4.1.1 3,052 3/6/2025
4.1.0 4,570 1/21/2025
4.0.0 17,487 12/31/2024
3.8.0 16,420 11/28/2024
3.7.4 1,058 11/20/2024
3.7.3 2,330 11/4/2024
3.7.2 493 10/28/2024
3.7.1 337 10/23/2024
3.7.0 184 10/22/2024
3.6.0 2,223 9/23/2024
3.5.7 1,707 9/14/2024
3.5.6 711 9/12/2024
3.5.5 4,418 8/8/2024
3.5.4 893 8/5/2024
3.5.3 13,201 6/10/2024
3.5.2 4,187 5/29/2024
3.5.1 735,968 4/30/2024
3.5.0 2,348 4/15/2024
3.4.0 1,769 4/5/2024
3.3.2 1,391 3/20/2024
3.3.1 26,420 12/21/2023
3.3.0 18,895 9/22/2023
3.2.5 1,147 9/11/2023
3.2.4 406 9/5/2023
3.2.3 1,275 8/29/2023
3.2.2 2,029 7/20/2023
3.2.1 240 7/19/2023
3.2.0 2,159 6/2/2023
3.1.2 1,675 5/30/2023
3.1.1 190 5/30/2023
3.1.0 1,462 5/10/2023
3.0.0 1,457 4/26/2023
2.14.4 721 4/11/2023
2.14.3 304 4/9/2023
2.14.2 11,230 4/6/2023
2.14.1 317 4/4/2023
2.14.0 363 3/28/2023
2.13.3 282 3/24/2023
2.13.2 279 3/21/2023
2.13.1 379 3/17/2023
2.13.0 332 3/14/2023
2.12.1 1,043 3/4/2023
2.12.0 317 3/3/2023
2.11.0 539 2/24/2023
2.10.0 3,306 12/12/2022
2.9.1 737 10/26/2022
2.9.0 441 10/26/2022
2.8.0 440 10/6/2022
2.7.0 1,445 9/9/2022
2.6.0 457 9/7/2022
2.5.0 923 6/8/2022
2.4.1 938 4/20/2022
2.4.0 546 1/13/2022
2.3.0 349 12/31/2021
2.2.1 401 11/19/2021
2.2.0 367 11/11/2021
2.1.1 426 5/21/2021
2.1.0 432 4/20/2021
2.0.0 414 3/22/2021
1.8.0 517 2/5/2021
1.7.0 501 2/2/2021
1.6.0 521 1/25/2021
1.5.0 497 1/21/2021
1.4.0 460 1/19/2021
1.3.0 475 1/15/2021
1.2.0 465 1/14/2021
1.1.0 504 1/11/2021
1.0.1 588 1/2/2021
1.0.0 534 12/31/2020

See https://github.com/TrevorPilley/phone-number-parser/releases for a summary of changes made in this release of the package.