Difference between revisions of "TStrArray"

From SCAR Divi Manual
Jump to: navigation, search
m (Freddy moved page TStringArray to TStrArray)
(No difference)

Revision as of 17:08, 12 December 2012

Definition

TStringArray = array of string;

Availability

SCAR Divi 3.00 > Current

Description

A dynamic array type based on the string type. It holds a set of strings.

Example

var
  SA: TStringArray;

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

Output:

Hello World!

See Also