Componentes.Terceros.jvcl/official/3.39/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - string write char.pas
2010-01-18 16:55:50 +00:00

8 lines
86 B
ObjectPascal

var
S: string;
begin
S := '1234567890';
S[4] := '!';
Result := S;
end;