Name | Description |
---|---|
roArray | Returns information about the application |
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
Name | Type | Description |
---|---|---|
separator | String | The string used to separate elements in an array. |
A String containing the array elements.
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"