| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Copy a limited number of characters from an ansistring to a null-terminated string.
Source position: syspchh.inc line 40
function StrPLCopy(  | 
Dest: PChar;  | 
const Source: string;  | 
MaxLen: SizeUInt  | 
):PChar; overload;  | 
Dest: PWideChar;  | 
const Source: UnicodeString;  | 
MaxLen: SizeUInt  | 
):PWideChar; overload;  | 
StrPLCopy Converts maximally MaxLen characters of the Ansistring in Source to a Null-terminated string, and copies it to Dest. Dest needs enough room to contain the characters.
No checking is performed to see whether Dest points to enough memory to contain L characters of Source.
  | 
Copy an ansistring to a null-terminated string.  |