Hallo,
@Die Muhkuh: da fehlt noch ein StrToInt
Wenn der Rückgabetyp ein Integer sein soll:
Delphi-Quellcode:
function StripPlusMinusAndSpace(const Str: string): integer;
begin
Result := Abs(StrToInt(StringReplace(Str, ' ', '', [rfReplaceAll])));
end;