Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.541 Beiträge
Delphi 12 Athens
|
AW: IBAN String Formatieren
2. Feb 2022, 18:20
Delphi-Quellcode:
uses
System.MaskUtils;
var
formattedIBAN: string;
begin
formattedIBAN := FormatMaskText('LL 00 0000 0000 0000 0000 00;0; ', 'DE12123412341234123412');
end;
|