这个实现了拆开,并存入另一个txt文件,你可以看看:
procedure tform1.button1click(sender:tobject);
var
f,myfile:textfile;
s,str1,str2:string;
a:integer;
begin
edit1.clear;
edit2.clear;
assignfile(f,'e:\myfl.txt');//将文件myfl.txt和变量f关联起来
reset(f);
readln(f,s);
a:=pos(',',s);//取得字符中的逗号
str1:=copy(s,1,a-1);//取得逗号前面的变量
str2:=copy(s,a+1,length(s)-a);//取得逗号后面的变量
edit1.text:=str1;
edit2.text:=str2;
assignfile(myfile,'e:\myfile.txt');//新建一个myfile.txt文件,并和变量myfile关联起来
rewrite(myfile);
write(myfile,'['+str2+']');//将变量str2中的内容存到新建的myfile.txt文件中
closefile(myfile);
closefile(f);
end;
end.