Code4bin Delphi Verified [DIRECT]
function SafeStrToInt(const S: string; Default: Integer = 0): Integer; begin if not TryStrToInt(S, Result) then Result := Default; end;
function SafeStrToInt(const S: string; Default: Integer = 0): Integer; begin if not TryStrToInt(S, Result) then Result := Default; end;