Updated 2017-08-02 00:06:56 by sergiol

https://www.tcl.tk/man/tcl/TclCmd/join.htm

Join converts a Tcl list into a string. It glues together the elements of a list using a supplied string as element separator. Default is a space. For example:
 % join {a b c} " and "
 a and b and c
 % join {a b c} ""
 abc


See also edit