[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Insert a string at a given position
Source position: syshelph.inc line 109
public function TStringHelper.Insert( |
StartIndex: Integer; |
const AValue: string |
):string; |
Insert inserts the string AValue in a string (Self) at the (zero-based) position StartIndex. It returns the resulting string (Self). If StartIndex is less than zero, it is set to zero. If StartIndex is higher than the length, AValue is appended to the string.
|
Insert one string in another. |