TPCWare.IbanValidator
1.1.0
dotnet add package TPCWare.IbanValidator --version 1.1.0
NuGet\Install-Package TPCWare.IbanValidator -Version 1.1.0
<PackageReference Include="TPCWare.IbanValidator" Version="1.1.0" />
paket add TPCWare.IbanValidator --version 1.1.0
#r "nuget: TPCWare.IbanValidator, 1.1.0"
// Install TPCWare.IbanValidator as a Cake Addin #addin nuget:?package=TPCWare.IbanValidator&version=1.1.0 // Install TPCWare.IbanValidator as a Cake Tool #tool nuget:?package=TPCWare.IbanValidator&version=1.1.0
IBAN validator
Simple IBAN Validator
This library contains a static class IbanValidator
with two static methods:
bool IsValid(string iban)
(bool isValid, int errorCode, string errorMsg) Check(string iban)
In the static class an internally used list IbanCountryFormats
of IbanCountryFormat
items describe the lenght and format of the IBAN code for each supported country.
Contribution
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(string iban)
{
(bool isValid, _, _) = Check(iban);
return isValid;
}
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 = "Austria",
CountryIsoCode = "AT",
IbanRegex = @"AT\d{2}\d{16}" // 16n
},
// Other country formats
...
};
}
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 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. |
-
.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.
This version add 'IsValid' method to get only le boolean result without error type and reason message of a failed validation. It also replace integer ErrorCode in favour of enum errorType.