Personnummer 3.4.1

dotnet add package Personnummer --version 3.4.1
NuGet\Install-Package Personnummer -Version 3.4.1
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="Personnummer" Version="3.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Personnummer --version 3.4.1
#r "nuget: Personnummer, 3.4.1"
#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 Personnummer as a Cake Addin
#addin nuget:?package=Personnummer&version=3.4.1

// Install Personnummer as a Cake Tool
#tool nuget:?package=Personnummer&version=3.4.1

Personnummer

GitHub Workflow Status NuGet Downloads

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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.

Version Downloads Last updated
3.4.1 2,936 12/14/2023
3.4.0 17,245 3/12/2023
3.3.0 302 3/12/2023
3.2.0 34,225 5/12/2022
3.1.2 4,349 2/14/2022
3.1.1 9,509 6/8/2021
3.1.0 8,374 3/22/2021
3.0.2 15,973 6/16/2020
3.0.0 1,172 5/7/2020
1.0.2 25,210 4/9/2019
1.0.0 1,981 10/20/2017