Logo

Programming-Idioms

History of Idiom 153 > diff from v12 to v13

Edit summary for version 13 by Matek:
New Pascal implementation by user [Matek]

Version 12

2017-09-12, 15:40:57

Version 13

2018-03-10, 23:57:35

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
uses Sysutils;
Code
t := s + i.ToString;