list | (Array) 1-dimensional array containing substrings to be joined. |
---|---|
delimiter | [optional] (String) String character used to separate the substrings in the returned string.
If not set, then the space character (" ") is used. If delimiter is a empty string, then all items in the list are concatenated with no delimiters. |
Dim sString, arr(
3)
arr(0) = "Mr."
arr(1) = "John "
arr(2) = "Doe "
arr(3) = "III"
sString = Join(arr)
' sString contains "Mr. John Doe III"