| [Overview][Resource strings][Constants][Types][Procedures and functions][Index] | 
Copies Count characters starting at the left of a string.
Source position: strutils.pp line 94
function LeftBStr(  | 
const AText: AnsiString;  | 
const AByteCount: SizeInt  | 
):AnsiString;  | 
AText  | 
  | 
String to copy characters from.  | 
AByteCount  | 
  | 
Number of characters to copy.  | 
First N characters of the string.
LeftBStr returns a string containing the leftmost AByteCount bytes from the string AText . If AByteCount is larger than the length (in bytes) of AText , only as many bytes as available are returned.
None.
  | 
Copies Count characters starting at the left of a string.  | 
|
  | 
Copies a number of characters starting at the left of a string  | 
|
  | 
Copy a given number of characters (bytes), counting from the right of a string.  | 
|
  | 
Copies a number of characters starting at a given position in a string.  |