Topic: string to number convert

How do I convert a string to number. I use Val but there is an error.

Re: string to number convert

var
  s: string;
  i: integer;
begin
  s := '5';
  i := StrToInt(s);
end;
Dmitry.

Re: string to number convert

Thank you. The last time I used pascal was on 199something (year)