если был нажат пробел. Где ошибка?
procedure edit_string(x,y:byte; var s:string);
var i,j:byte;
ch:char;
temp:string;
begin
i:=length(s);
temp:=s;
repeat
gotoxy(x,y);
write(s);
if temp>=s then
for j:=1 to ((length(temp)-length(s))) do write('*');
{ На месте звездочки должен стоять пробел, но так лучше видно ошибку }
gotoxy(i+x,y);
temp:=s;
ch:=readkey;
if ch=#0 then
begin
ch:=readkey;
case ch of
#75: if i>0 then dec(i);
#77: if i<length(s) then inc(i);
#83: delete(s,i+1,1);
end;
end
else
case ch of
#8: begin
delete(s,i,1);
dec(i);
end;
'a'..'z','A'..'Z':begin
insert(ch,s,i+1);
inc(i);
end;
'0'..'9':begin
insert(ch,s,i+1);
inc(i);
end;
'+'..'-','*'..'/':begin
insert(ch,s,i+1);
inc(i);
end;
' ':begin
insert(' ',s,i+1);
inc(i);
end;
end;
until ch=#13;
end;
Програма для проверки:
uses crt;
var s:string;
begin
clrscr;
write('Name ');
s:='pascal.dax.ru';
edit_string(6,1,s);
writeln;
writeln('Result : ',s);
readln;
end.