Implode
From SCAR Divi Manual
Definition
function Implode(Glue: AnsiString; Pieces: TStringArray): AnsiString;
Availability
SCAR Divi 3.20 > Current
Description
Implodes a given TStringArray Pieces by joining all of the containing strings together into one string with the given string Glue as delimiter.
Example
begin WriteLn(Implode(' ', ['Hello', 'World!'])); end.
Output:
Hello World!