System.SysUtils.TrimLeft
Delphi
function TrimLeft(const S: string): string;
C++
extern DELPHI_PACKAGE System::UnicodeString __fastcall TrimLeft(const System::UnicodeString S)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
TrimLeft removes blank and control characters from the left side of a string.
It returns a copy of the string S with leading spaces and control characters removed.