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.
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.
// Install PhoneNumberParser as a Cake Addin
#addin nuget:?package=PhoneNumberParser&version=2.13.3

// Install PhoneNumberParser as a Cake Tool
#tool nuget:?package=PhoneNumberParser&version=2.13.3

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. 
.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
3.3.2 466 3/20/2024
3.3.1 7,066 12/21/2023
3.3.0 7,734 9/22/2023
3.2.5 992 9/11/2023
3.2.4 338 9/5/2023
3.2.3 1,205 8/29/2023
3.2.2 1,688 7/20/2023
3.2.1 179 7/19/2023
3.2.0 2,059 6/2/2023
3.1.2 1,605 5/30/2023
3.1.1 123 5/30/2023
3.1.0 810 5/10/2023
3.0.0 888 4/26/2023
2.14.4 414 4/11/2023
2.14.3 224 4/9/2023
2.14.2 4,635 4/6/2023
2.14.1 257 4/4/2023
2.14.0 287 3/28/2023
2.13.3 213 3/24/2023
2.13.2 209 3/21/2023
2.13.1 323 3/17/2023
2.13.0 266 3/14/2023
2.12.1 963 3/4/2023
2.12.0 243 3/3/2023
2.11.0 473 2/24/2023
2.10.0 3,166 12/12/2022
2.9.1 663 10/26/2022
2.9.0 371 10/26/2022
2.8.0 361 10/6/2022
2.7.0 1,372 9/9/2022
2.6.0 383 9/7/2022
2.5.0 847 6/8/2022
2.4.1 850 4/20/2022
2.4.0 459 1/13/2022
2.3.0 268 12/31/2021
2.2.1 316 11/19/2021
2.2.0 282 11/11/2021
2.1.1 354 5/21/2021
2.1.0 341 4/20/2021
2.0.0 319 3/22/2021
1.8.0 414 2/5/2021
1.7.0 402 2/2/2021
1.6.0 425 1/25/2021
1.5.0 404 1/21/2021
1.4.0 360 1/19/2021
1.3.0 378 1/15/2021
1.2.0 360 1/14/2021
1.1.0 403 1/11/2021
1.0.1 491 1/2/2021
1.0.0 392 12/31/2020

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