System.SysUtils.TStringBuilder.Remove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Remove(StartIndex: Integer; RemLength: Integer): TStringBuilder;

C++

TStringBuilder* __fastcall Remove(int StartIndex, int RemLength);

Properties

Type Visibility Source Unit Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TStringBuilder

Description

Removes a substring from the character array of this instance.

Use Remove to remove a substring from the character array of this instance.

StartIndex indicates the index of the first character to remove.

RemLength indicates the number of characters to remove.

See Also