Personnummer 3.4.2
dotnet add package Personnummer --version 3.4.2
NuGet\Install-Package Personnummer -Version 3.4.2
<PackageReference Include="Personnummer" Version="3.4.2" />
paket add Personnummer --version 3.4.2
#r "nuget: Personnummer, 3.4.2"
// Install Personnummer as a Cake Addin #addin nuget:?package=Personnummer&version=3.4.2 // Install Personnummer as a Cake Tool #tool nuget:?package=Personnummer&version=3.4.2
Personnummer
Validate Swedish social security numbers.
Installation
dotnet add package Personnummer
Examples
Validation
using Personnummer;
class Test
{
public void TestValidation()
{
Personnummer.Valid("191212121212"); // => True
Personnummer.Valid("121212+1212") // => True
Personnummer.Valid("20121212-1212") // => True
}
}
Format
using Personnummer;
// Short format (YYMMDD-XXXX)
(new Personnummer("1212121212")).Format();
//=> 121212-1212
// Short format for 100+ years old
(new Personnummer("191212121212")).Format();
//=> 121212+1212
// Long format (YYYYMMDDXXXX)
(new Personnummer("1212121212")).Format(true);
//=> 201212121212
Age
using Personnummer;
(new Personnummer("1212121212")).Age;
//=> 7
Get sex
(new Personnummer("1212121212")).IsMale;
//=> true
(new Personnummer("1212121212")).IsFemale;
//=> false
Coordination numbers
The package supports coordination numbers. This feature is enabled by default and can be disabled by passing an option object to the constructor, parse or validate function.
Personnummer.Parse("193405619996"); // True.
Personnummer.Parse("193405619996", new { AllowCoordinationNumber = true }); // False.
Interim / T -numbers
The package supports interim (aka T) -numbers. This feature is not enabled by default as they are commonly used, but can be enabled by passing an option object to the constructor, parse of validate function.
Personnummer.Parse("20000101T220", new { AllowInterimNumber = true }); // True.
See Personnummer.Test/PersonnummerTest.cs
for more examples.
License
MIT License
Copyright (c) Personnummer and Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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 is compatible. 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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 is compatible. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.7
- No dependencies.
-
.NETFramework 4.8
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net5.0
- No dependencies.
-
net7.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Personnummer:
Package | Downloads |
---|---|
Organisationsnummer
Verify Swedish Organisation numbers. |
GitHub repositories
This package is not used by any popular GitHub repositories.