Join Function |
Syntax:
Group:
Description: Returns a string by concatenating all the values in the array with Sep in between each one.
Parameters:
Parameter |
Description |
Concatenate values from this array. |
|
Use this string value to separate the values. (Default: " ") |
Example:
Sub Main
Debug.Print Join(Array(1,2,3)) '"1 2 3"
EndSub
See Also: