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
String
If there is insufficient information on this page and you wish learn more about JOIN, please send an email to smallbasic@gmail.com. You can help to improve information about JOIN by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.