JOIN

JOIN words, delimiter, s

Join the elements of the array words with the delimiter delimiter and return the result as string s.

Example

' Create an array
words << "etc"
words << "temp"
words << 1
words << "filename.ext"

' Join then array elements
JOIN words, "/", s
PRINT s                       ' Output: etc/temp/1/filename.ext
Code samples using JOIN