Difference between revisions of "String"
From SCAR Divi Manual
Line 1: | Line 1: | ||
+ | ==Availability== | ||
+ | SCAR Divi 3.00 > Current | ||
+ | |||
+ | ===Aliases=== | ||
+ | *AnyString (SCAR Divi 3.25 > Current) | ||
+ | |||
==Description== | ==Description== | ||
String is a basic type which holds a null terminated string which consists out of [[Char|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 [[AnsiChar|ansi characters]] which can also be stored in [[AnsiString]]. | String is a basic type which holds a null terminated string which consists out of [[Char|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 [[AnsiChar|ansi characters]] which can also be stored in [[AnsiString]]. |
Revision as of 15:58, 2 July 2011
Availability
SCAR Divi 3.00 > Current
Aliases
- AnyString (SCAR Divi 3.25 > Current)
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!