Implode

From SCAR Divi Manual
Revision as of 10:09, 2 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function Implode(Glue: AnsiString; Pieces: TStringArray): AnsiString; </source> ==Availability== SCAR Divi 3.20 > Current ==De...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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</ref>

begin
  WriteLn(Implode(' ', ['Hello', 'World!']));
end.

Output:

Hello World!

See Also