Hello! I wrote a program that converts the entered string, removing all letters from it.
procedure TForm1.Button1Click(Sender: TObject); var txt, Sum: string; i, num: Integer; begin memo1.Lines.Clear; txt:=Edit1.Text; for i:= 1 to Length(txt) do begin if TryStrToInt(txt[i], num) then begin Sum:=sum+IntToStr(num); end; end; Memo1.Lines.Add(sum); end; end. What do I need to replace IntToStr in order not to IntToStr letters, but numbers? Where can I see a complete list of such operators?