Skip to content
forked from skwasjer/IbanNet

C# .NET IBAN validator, parser, builder and generator

License

Notifications You must be signed in to change notification settings

ralf1991/IbanNet

 
 

Repository files navigation

IbanNet

IbanNet is a .NET library providing functionality to validate and parse an International Bank Account Number also known as IBAN.

Additionally, IbanNet provides:

  • the Iban primitive type, which can be used as a drop in replacement for a string in your domain.
  • a builder to construct IBAN's from a Basic Bank Account Number (BBAN).
  • a generator to assist with (unit) testing.

Stand With Ukraine Build status Tests codecov

IbanNet NuGet NuGet Documentation
IbanNet.DataAnnotations NuGet NuGet Documentation
IbanNet.DependencyInjection.Autofac NuGet NuGet Documentation
IbanNet.DependencyInjection.ServiceProvider NuGet NuGet Documentation
IbanNet.FluentValidation NuGet NuGet Documentation

Example with validator

IIbanValidator validator = new IbanValidator();
ValidationResult validationResult = validator.Validate("NL91ABNA0417164300");
if (validationResult.IsValid)
{
    // ..
}

Example with Iban type

Iban iban;
IIbanParser parser = new IbanParser(IbanRegistry.Default);
bool success = parser.TryParse("NL91 ABNA 0417 1643 00", out iban);
if (success)
{
    Console.WriteLine(iban.ToString(IbanFormat.Obfuscated)); // XXXXXXXXXXXXXX4300
}

Contributions

Please check out the contribution guidelines.

Other info

About

C# .NET IBAN validator, parser, builder and generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.2%
  • PowerShell 0.8%