Explode
From SCAR Divi Manual
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!