Registriert seit: 23. Jan 2024
9 Beiträge
|
AW: Besserer Format-Befehl
25. Jan 2024, 23:35
Und noch eine Neuigkeit heute:
Ich hab gleich mal die Version 2.0 Released:
ALt:
Delphi-Quellcode:
NetFormat.ToString('Hallo {0} {1:D4} {2} {3}',
'Welt', 55, 7.7, testdate);
Neu:
Delphi-Quellcode:
TStr('Hallo {0} {1:D4} {2} {3}').
Params('Welt', 55, 7.7, testdate);
Das neue Format ist eleganter und auch ein wenig kürzer. Es handelt sich um eine Record-Erzeugung durch einen überladenen Explizit-Operator. Hinten dran dann die Parameter als Methode.
Readme: https://github.com/VoSs2o0o/NetForma...ster/readme.md
Webseite: https://www.cloud-9.de/entwicklung/d...-format-befehl
Code: https://github.com/VoSs2o0o/NetFormat/
Download: https://github.com/VoSs2o0o/NetFormat/releases
|