Difference between revisions of "TStrArray"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> TStringArray = array of string; </source> ==Description== A dynamic array type based on the string type. It holds a set of ...") |
|||
| Line 3: | Line 3: | ||
TStringArray = array of string; | TStringArray = array of string; | ||
</source> | </source> | ||
| + | |||
| + | ==Availability== | ||
| + | SCAR Divi 3.00 > Current | ||
==Description== | ==Description== | ||
Revision as of 16:01, 2 July 2011
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!