Working with Strings

From RAD Studio
Jump to: navigation, search

Go Up to RTL


For Delphi, the RTL provides many specialized string-handling routines specific to a string type. These are routines for strings (AnsiString and UnicodeString), wide strings (WideString), and null-terminated strings (PChars). Routines that deal with null-terminated strings use the null-termination to determine the length of the string. There are no categories of routines listed for ShortString types. However, some built-in compiler routines deal with the ShortString type. These include, for example, the Low and High standard functions. For more details about the various string types, see the Delphi Language Guide Index.

For C++, the RTL provides many specialized string-handling routines specific to a string type. These are routines for wide strings, AnsiStrings, and null-terminated strings (char *). Routines that deal with null-terminated strings use the null-termination to determine the length of the string.

Topics

The following topics provide an overview of many of the string-handling routines in the RTL:

See Also