Joins the list of strings supplied as an argument into a string. Optionally, inserts the separator supplied as an argument in between each string.
string-join(list as list of string, separator as string="") -> string |
Name |
Type |
Description |
|---|---|---|
list |
list of string |
The input list of string. |
separator |
string |
Optional argument. Specifies the separator by which all joined strings should be delimited. |
The following expression will return the string a;b;c:
string-join(list('a', 'b', 'c'), ';') |