Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 361 Bytes

545-string-join.markdown

File metadata and controls

20 lines (14 loc) · 361 Bytes

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 
close