Difference between revisions of "String"

From Free Pascal wiki
Jump to navigationJump to search
(remove extra "compiler")
m (remove extra blank line)
Line 6: Line 6:
  
 
The ShortString length can be decided by the programmer but is limited to 255 characters. If a ShortString length is not given, the length defaults to 255.  
 
The ShortString length can be decided by the programmer but is limited to 255 characters. If a ShortString length is not given, the length defaults to 255.  
 
  
 
The length of an AnsiString is only limited by available memory.
 
The length of an AnsiString is only limited by available memory.

Revision as of 07:12, 8 July 2016

Deutsch (de) English (en) español (es) français (fr) русский (ru)

String is a Type which may contain characters. String is a synonym for ShortString or AnsiString depending on the current compiler setting.

If Compiler directive {$H} or compiler directive {$LongStrings} is on ( {$H+} or {$LongStrings ON} ), then a String type is the same as an AnsiString type, if not ( {$H-} or {$LongStrings OFF} ), it is a ShortString type.

The ShortString length can be decided by the programmer but is limited to 255 characters. If a ShortString length is not given, the length defaults to 255.

The length of an AnsiString is only limited by available memory.

In the future, there might be a compiler switch to have the String type refer to a Unicode (UTF-8 or UTF-16) String type.

See also


navigation bar: data types
simple data types

boolean byte cardinal char currency double dword extended int8 int16 int32 int64 integer longint real shortint single smallint pointer qword word

complex data types

array class object record set string shortstring