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 string.

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

See Also