blob: 158b74001d4785f01a8885e907bacf0b09f3506f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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.
|