[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Allocate a new ansistring on the heap.
Source position: sysstrh.inc line 66
function NewStr( |
const S: string |
):PString; overload; |
NewStr assigns a new dynamic string on the heap, copies S into it, and returns a pointer to the newly assigned string.
This function is obsolete, and shouldn't be used any more. The AnsiString mechanism also allocates ansistrings on the heap, and should be preferred over this mechanism.
For an example, see AssignStr.
If not enough memory is present, an EOutOfMemory exception will be raised.
|
Assigns an ansistring to a null-terminated string. |
|
|
Dispose an ansistring from the heap. |