Join

FUNCTION Join ( [ Separator AS String ] ) AS String

Concatenates the strings stored in the arrays.

Separator is a string that will be inserted between each string of the array. The default separator is a comma.

This function is the contrary of the Split subroutine.


Example

DIM aClaim AS String[]

aClaim = [ "Gambas", "Almost", "Means", "Basic", "!" ]
PRINT aClaim.Join("/")