Componentes.Terceros.jvcl/internal/3.36/1/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - string write char.pas
2009-03-04 12:31:55 +00:00

8 lines
86 B
ObjectPascal

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