String
From SCAR Divi Manual
Revision as of 10:54, 1 July 2011 by Freddy (talk | contribs) (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...")
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!