LeftStr
Copies Count characters starting at the left of a string.
Declaration
Source position: strutils.pp line 86
function LeftStr(const AText: AnsiString; const ACount: SizeInt)
: AnsiString;
function LeftStr(const AText: WideString; const ACount: SizeInt)
: WideString;
Description
LeftStr returns a string containing the leftmost ACount characters from the string AText . If ACount is larger than the length (in characters) of AText , only as many characters as available are returned.
Errors
None.
See also
Name | Description |
---|---|
AnsiLeftStr | Copies a number of characters starting at the left of a string |
LeftBStr | Copies Count characters starting at the left of a string. |
MidStr | Copies a number of characters starting at a given position in a string. |
RightStr | Copy a given number of characters, counting from the right of a string. |