System.SysUtils.TStringHelper.TrimStart

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function TrimStart(const TrimChars: array of Char): string; deprecated 'Use TrimLeft';

Properties

Type Visibility Source Unit Parent
function public System.SysUtils.pas System.SysUtils TStringHelper

Description

Warning: TrimStart is deprecated. Please use TrimLeft.

Trims the given leading characters from this 0-based string.

The TrimChars parameter allows you to specify which characters (in the form of an array of characters) to trim from the start of this 0-based string.

See Also