Registriert seit: 14. Apr 2008
3.006 Beiträge
Delphi 2009 Professional
|
AW: FPC Kompatibilitätsfrage
27. Nov 2021, 16:43
Danke schon mal für die Hinweise.
TStringHelper für Free Pascal
https://www.freepascal.org/docs-html...inghelper.html
Enthält unter anderem auch ToInteger (als class function)
Delphi-Quellcode:
var
S: string;
begin
S := '42';
writeln(S.ToInteger);
Ausgabe:
42
Michael Justin
Geändert von mjustin (27. Nov 2021 um 16:54 Uhr)
|