String

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

Description

String is a basic type which holds a null terminated string which consists out of characters that can be both ansi and unicode, SCAR divi does however not support unicode characters, so under normal circumstances a string should only contain ansi characters which can also be stored in AnsiString.

Example

var
  s: string;
begin
  s := 'Hello World!';
  WriteLn(s);
end.

Output:

 Hello World!

See Also