This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES2/Source/Base/Utiles/uIBANUtils.pas
2013-12-13 11:37:18 +00:00

27 lines
376 B
ObjectPascal

unit uIBANUtils;
interface
uses
SysUtils, Classes, IBAN;
function EsCodigoIBANValido(AIBAN : string): boolean;
implementation
function EsCodigoIBANValido(AIBAN : string): boolean;
var
auxIBAN : TIBAN;
begin
auxIBAN.Create;
try
auxIBAN.IBAN := AIBAN;
Result := auxIBAN.Valid;
finally
FreeAndNil(auxIBAN);
end;
end;
end.