Implode
From SCAR Divi Manual
Definition
function Implode(const Glue: string; const Pieces: TStrArray): string;
Availability
SCAR Divi 3.20 > Current
Description
Implodes a given TStrArray 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!