| [Overview][Resource strings][Constants][Types][Procedures and functions][Index] | 
Copies a number of characters starting at a given position in a string.
Source position: strutils.pp line 90
function MidBStr(  | 
const AText: AnsiString;  | 
const AByteStart: SizeInt;  | 
const AByteCount: SizeInt  | 
):AnsiString;  | 
AText  | 
  | 
String to copy characters from.  | 
AByteStart  | 
  | 
Position (in bytes) to start copying from.  | 
AByteCount  | 
  | 
Number of characters (bytes) to copy.  | 
Resulting string
MidBStr returns a string containing the first AByteCount bytes from the string AText starting at position AByteStart. If AByteStart+AByteCount is larger than the length (in bytes) of AText, only as many bytes as available are returned. If AByteStart is less than 1 or larger than the length of AText, then no characters are returned.
None.
  | 
Copies Count characters starting at the left of a string.  | 
|
  | 
Returns a number of characters copied from a given location in 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.  |