dann solltest du mal lernen wie man die hilfe benutzt. Als erstes delete eingeben und dann wird da unter anderem auch "Delete function" angezeigt:
Zitat:
Removes a substring from a string.
Unit
System
Category
string handling routines
Delphi syntax:
procedure Delete(var S: string; Index, Count:Integer);
Description
In Delphi code, Delete removes a substring of Count characters from string S starting with S[Index]. S is a string-type variable. Index and Count are integer-type expressions.
If index is larger than the length of the string or less than 1, no characters are deleted.
If count specifies more characters than remain starting at the index, Delete removes the rest of the string. If count is less than or equal to 0, no characters are deleted.
Und neben der Delphihilfe gibt es auch noch google und die Forensuche