Implemented By

Supported Methods

 

Description of Methods

Join(separator as String) as String

Creates a string by joining all array elements together separated by the specified separator.
All elements must be of type string, otherwise an empty string is returned.

This function is available in firmware 7.5 or later.

Examples
    a = ["ant","bat","cat"] 
s = a.Join(",")
print """" + s + """"
REM "ant,bat,cat"

a = "abc".Split("")
s = a.Join("--")
print """" + s + """"
REM "a--b--c"