
11.10.2011, 08:57
|
 |
Let Me Show You
|
|
Регистрация: 30.04.2010
Адрес: Северодвинск
Сообщения: 5,426
Версия Delphi: 7, XE5
Репутация: 59586
|
|
Цитата:
Copy function
Returns a substring of a string or a segment of a dynamic array.
function Copy(S; Index, Count: Integer): string;
...
If Index is larger than the length of S, Copy returns an empty string or array.
If Count specifies more characters or array elements than are available, only the characters or elements from S[Index] to the end of S are returned.
|
поэтому:
Код:
Copy('procedure TForm1.FormCreate(Sender: TObject);', 11, MaxInt);

__________________
Пишу программы за еду.
__________________
|