Difference between revisions of "String"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==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 no...")
(No difference)

Revision as of 11:54, 1 July 2011

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