Logo

Programming-Idioms

History of Idiom 153 > diff from v5 to v6

Edit summary for version 6 by Bart:
[Pascal] typo: sysutil -> sysutils

Version 5

2016-11-09, 17:52:58

Version 6

2017-04-19, 11:19:22

Idiom #153 Concatenate string with integer

Create string t as the concatenation of string s and integer i.

Idiom #153 Concatenate string with integer

Create string t as the concatenation of string s and integer i.

Extra Keywords
int concat
Extra Keywords
int concat
Imports
SysUtil
Imports
SysUtils
Code
begin
  t := s + IntToStr(i);
end.
Code
begin
  t := s + IntToStr(i);
end.