Explode

From SCAR Divi Manual
Revision as of 10:22, 2 July 2011 by Freddy (talk | contribs)
Jump to: navigation, search

Definition

function Explode(Separator, s: AnsiString): TStringArray;

Availability

SCAR Divi 3.20 > Current

Description

Splits a given string s into a TStringArray by breaking of at every substring given by Separator. An extended function with additional functionality is available as ExplodeEx. When s is empty, the function will return an empty array.

Example

begin
  WriteLn(Implode(' ', Explode('roflcopter', 'HelloroflcopterWorld!')));
end.

Output:

Hello World!

See Also