JOIN$ function
Purpose: JOIN$ returns a string concatenated from the strings in the parameter list.
Syntax: RetStr$ = JOIN$(NumberofStrings%, _ String1$, _ String2$, _ String3$, ... StringN$) Parameters:
|
Example:
DIM A$ DIM B$ DIM C$ DIM MyStr$ A$ = "a" B$ = "b" C$ = "c" MyStr$ = UCASE$(JOIN$(3, A$, B$, C$)) PRINT MyStr$
Result:
ABC