Einzelnen Beitrag anzeigen

The Riddler
(Gast)

n/a Beiträge
 
#18

Re: Positive Zahlen in negative umwandeln

  Alt 29. Okt 2008, 18:33
Zitat von The Riddler:
Zahl := StrToInt(StringReplace(IntToStr(Zahl), '-', '', [rfReplaceAll]));
Oder natürlich umgekehrt wie OP es will:
Delphi-Quellcode:
var
  temp: String;
begin
  temp := ' ' + IntToStr(zahl);
  temp := StringReplace(temp, ' ', '-', [rfReplaceAll]);
  Zahl := StrToInt(temp);
// I won imo