String list to string
Concatenates a string list to a string.
Inputs
- 
list
- The list of strings to concatenate.
 
 - 
separator
- The string that will separate the concatenated string list items (typically a comma 
,). 
 - The string that will separate the concatenated string list items (typically a comma 
 
Outputs
- 
string
- The concatenated string list.
 
 
Note(s)
- 
To concatenate means to “put in series” or to “chain”. Therefore to concatenate a string list is to “chain” a string list into a single string, separated by a separator.
 - 
Other names for this node include: StringListToString, Concatenate, or Join strings.