procedure TForm1.Button1Click(Sender: TObject);
var
i,l:integer;
my_txt:string;
temp_txt:string;
str:string;
begin
str:='000011112222';
l:=length(str) div 4;
for i:=0 to l-1 do
begin
temp_txt:=copy(str,i*4+1,4);
if i=0 then
my_txt:=temp_txt
else
my_txt:=my_txt+'/'+temp_txt;
end;
Edit1.Text:=my_txt;
end;