Componentes.Terceros.jvcl/official/3.36/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - string write char.pas
2009-02-27 12:23:32 +00:00

8 lines
86 B
ObjectPascal

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