Implode

From SCAR Divi Manual
Revision as of 19:33, 18 October 2012 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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!

See Also