Difference between revisions of "AnsiString"

From SCAR Divi Manual
Jump to: navigation, search
Line 11: Line 11:
 
end.
 
end.
 
</source>
 
</source>
 +
 +
==See Also==
 +
*[[AnsiChar]]
 +
*[[string]]
  
 
[[Category:Types]]
 
[[Category:Types]]
 
[[Category:Basic Types]]
 
[[Category:Basic Types]]

Revision as of 18:38, 25 June 2011

Description

AnsiString is a basic type which holds a null terminated string which consists out of ansi characters. An ansi character represents for the most-part the extended ascii character set with characters having a single byte value of 0 to 255.

Example

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

See Also