mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 09:33:41 +02:00
13 lines
218 B
ObjectPascal
13 lines
218 B
ObjectPascal
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.
|