JOIN words, delimiter, s
Join the elements of the array words
with the delimiter delimiter
and return the result as string s
.
' 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