Join
Qubes 5.6 Joins a set of elements in the form of a single string with separators.
Syntax
Join(separator, elem1, elem2, ...)
separator = separator to use between the elements
param1 = first element to join (value, range, or list)
param1 = second element to join (value, range, or list)
... = nth parameter in the set (value, range, or list)
Remarks
If separator is an empty string, the elements will be joined without a separator, resulting in simple concatenation.
Examples
Join(',', 1, 2) = '1,2'Join('-', 1, List(2, 3)) = '1-2-3'