TPCWare.IbanValidator 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TPCWare.IbanValidator --version 1.0.0
NuGet\Install-Package TPCWare.IbanValidator -Version 1.0.0
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="TPCWare.IbanValidator" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TPCWare.IbanValidator --version 1.0.0
#r "nuget: TPCWare.IbanValidator, 1.0.0"
#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 TPCWare.IbanValidator as a Cake Addin
#addin nuget:?package=TPCWare.IbanValidator&version=1.0.0

// Install TPCWare.IbanValidator as a Cake Tool
#tool nuget:?package=TPCWare.IbanValidator&version=1.0.0

IBAN validator

Simple IBAN Validator

This library contains s static class IbanValidator with a method Checkand an IbanCountryFormat list that describe the lenght and format of the IBAN code for each supported country.

Actually I've managed to add support for IBAN codes of the UE countries and the United Kingdom. Please feel free to contribute to add more countries, deriving the Regex expression from the Wikipedia IBAN formats by country table.

Excerpt from the code

public static class IbanValidator
{
    public static (bool isValid, int errorCode, string errorMsg) Check(string iban)
    {
        // Check IBAN code format
        ...
    
        // Calculate and verify IBAN code checksum 
        ...
    
        return (isValid, errorCode, errorMsg);
    }

    public static List<IbanCountryFormat> IbanCountryFormats = new List<IbanCountryFormat>
    {
         new IbanCountryFormat
         {
             CountryName = "France",
             CountryIsoCode = "FR",
             IbanRegex = @"FR\d{2}\d{10}[0-9A-Z]{11}\d{2}"
         },
         new IbanCountryFormat
         {
             CountryName = "Germany",
             CountryIsoCode = "DE",
             IbanRegex = @"DE\d{2}\d{18}"
         },
         new IbanCountryFormat
         {
             CountryName = "Italy",
             CountryIsoCode = "IT",
             IbanRegex = @"IT\d{2}[A-Z]\d{10}[0-9A-Z]{12}"
         },
         new IbanCountryFormat
         {
             CountryName = "Spain",
             CountryIsoCode = "SP",
             IbanRegex = @"SP\d{2}\d{20}"
         },
         new IbanCountryFormat
         {
             CountryName = "United Kingdom of Great Britain and Northern Ireland (the)",
             CountryIsoCode = "GB",
             IbanRegex = @"GB\d{2}[A-Z]{4}\d{14}"
         }
         
        // Other country formats
        ...

    };
}
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 was computed.  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 was computed. 
.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.
  • .NETStandard 2.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
1.1.0 453 4/20/2020
1.0.0 405 4/19/2020

This version is able to check for IBAN codes of the UE countries and the United Kingdom.
See the repository readme to contribute and expand 'IBAN format by country' list.