Function Copy (Const S : String;Index : Integer;Count : Byte) : String;
Copy returns a string which is a copy if the Count characters in S, starting at position Index. If Count is larger than the length of the string S, the result is truncated.
If Index is larger than the length of the string S, then an empty string is returned.
None.
Program Example11; { Program to demonstrate the Copy function. } Var S,T : String; begin T:='1234567'; S:=Copy (T,1,2); { S:='12' } S:=Copy (T,4,2); { S:='45' } S:=Copy (T,4,8); { S:='4567' } end.