PhoneNumberParser 2.13.0
See the version list below for details.
dotnet add package PhoneNumberParser --version 2.13.0
NuGet\Install-Package PhoneNumberParser -Version 2.13.0
<PackageReference Include="PhoneNumberParser" Version="2.13.0" />
paket add PhoneNumberParser --version 2.13.0
#r "nuget: PhoneNumberParser, 2.13.0"
// Install PhoneNumberParser as a Cake Addin #addin nuget:?package=PhoneNumberParser&version=2.13.0 // Install PhoneNumberParser as a Cake Tool #tool nuget:?package=PhoneNumberParser&version=2.13.0
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 (area codes) and subscriber 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.
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");
phoneNumber.NationalDestinationCode; // 114 (aka area code)
phoneNumber.SubscriberNumber; // 2726444
// Country specific information is accessible via the Country property, e.g.:
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 serialization or 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 | Versions 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. |
-
.NETStandard 2.0
- Microsoft.Bcl.HashCode (>= 1.1.1)
- System.Memory (>= 4.5.5)
-
.NETStandard 2.1
- No dependencies.
-
net7.0
- No dependencies.
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.7.3 | 272 | 11/4/2024 |
3.7.2 | 324 | 10/28/2024 |
3.7.1 | 239 | 10/23/2024 |
3.7.0 | 128 | 10/22/2024 |
3.6.0 | 1,616 | 9/23/2024 |
3.5.7 | 612 | 9/14/2024 |
3.5.6 | 466 | 9/12/2024 |
3.5.5 | 2,873 | 8/8/2024 |
3.5.4 | 469 | 8/5/2024 |
3.5.3 | 6,680 | 6/10/2024 |
3.5.2 | 1,858 | 5/29/2024 |
3.5.1 | 233,611 | 4/30/2024 |
3.5.0 | 1,624 | 4/15/2024 |
3.4.0 | 1,663 | 4/5/2024 |
3.3.2 | 1,166 | 3/20/2024 |
3.3.1 | 17,291 | 12/21/2023 |
3.3.0 | 15,376 | 9/22/2023 |
3.2.5 | 1,109 | 9/11/2023 |
3.2.4 | 372 | 9/5/2023 |
3.2.3 | 1,235 | 8/29/2023 |
3.2.2 | 1,814 | 7/20/2023 |
3.2.1 | 202 | 7/19/2023 |
3.2.0 | 2,108 | 6/2/2023 |
3.1.2 | 1,633 | 5/30/2023 |
3.1.1 | 143 | 5/30/2023 |
3.1.0 | 981 | 5/10/2023 |
3.0.0 | 1,083 | 4/26/2023 |
2.14.4 | 484 | 4/11/2023 |
2.14.3 | 255 | 4/9/2023 |
2.14.2 | 7,519 | 4/6/2023 |
2.14.1 | 275 | 4/4/2023 |
2.14.0 | 316 | 3/28/2023 |
2.13.3 | 237 | 3/24/2023 |
2.13.2 | 238 | 3/21/2023 |
2.13.1 | 338 | 3/17/2023 |
2.13.0 | 292 | 3/14/2023 |
2.12.1 | 998 | 3/4/2023 |
2.12.0 | 271 | 3/3/2023 |
2.11.0 | 495 | 2/24/2023 |
2.10.0 | 3,206 | 12/12/2022 |
2.9.1 | 688 | 10/26/2022 |
2.9.0 | 394 | 10/26/2022 |
2.8.0 | 390 | 10/6/2022 |
2.7.0 | 1,391 | 9/9/2022 |
2.6.0 | 407 | 9/7/2022 |
2.5.0 | 873 | 6/8/2022 |
2.4.1 | 880 | 4/20/2022 |
2.4.0 | 482 | 1/13/2022 |
2.3.0 | 289 | 12/31/2021 |
2.2.1 | 331 | 11/19/2021 |
2.2.0 | 304 | 11/11/2021 |
2.1.1 | 369 | 5/21/2021 |
2.1.0 | 364 | 4/20/2021 |
2.0.0 | 345 | 3/22/2021 |
1.8.0 | 445 | 2/5/2021 |
1.7.0 | 427 | 2/2/2021 |
1.6.0 | 452 | 1/25/2021 |
1.5.0 | 430 | 1/21/2021 |
1.4.0 | 391 | 1/19/2021 |
1.3.0 | 402 | 1/15/2021 |
1.2.0 | 391 | 1/14/2021 |
1.1.0 | 435 | 1/11/2021 |
1.0.1 | 509 | 1/2/2021 |
1.0.0 | 428 | 12/31/2020 |
See https://github.com/TrevorPilley/phone-number-parser/releases for a summary of changes made in this release of the package.