ex15.pp 169 B

1234567891011
  1. Program Example15;
  2. { Program to demonstrate the Delete function. }
  3. Var
  4. S : String;
  5. begin
  6. S:='This is not easy !';
  7. Delete (S,9,4); { S:='This is easy !' }
  8. end.