System.SysUtils.TStringHelper.TrimEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function TrimEnd(const TrimChars: array of Char): string; deprecated 'Use TrimRight';

Properties

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

Description

Warning: TrimEnd is deprecated. Please use TrimRight.

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

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

See Also