Logo

Programming-Idioms

History of Idiom 53 > diff from v1 to v2

Edit summary for version 2 by :

Version 1

2015-05-06, 21:04:51

Version 2

2015-07-31, 19:37:39

Idiom #53 Join a list of strings

Concatenate elements of string list x joined by the separator ", " to create a single string y.

Idiom #53 Join a list of strings

Concatenate elements of string list x joined by the separator ", " to create a single string y.

Code
$y = join(", ", @x)