Logo

Programming-Idioms

History of Idiom 53 > diff from v21 to v22

Edit summary for version 22 by :
New Erlang implementation by user [elbrujohalcon]

Version 21

2015-11-30, 12:37:29

Version 22

2015-12-18, 03:11:06

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 = string:join(X, ",").
Doc URL
http://erldocs.com/current/stdlib/string.html?i=0&search=string:jo#join/2