delphi按知道格式读取txt文件的内容。
我希望读取txt文件的一行内容,内容是一个共10位的数字串,如0000012345,我想清除前面的0,并且最后两位为小数,即123.45;再如0000456789,则应该...
我希望读取txt文件的一行内容,内容是一个共10位的数字串,如0000012345,我想清除前面的0,并且最后两位为小数,即123.45;再如0000456789,则应该读取为4567.89;最后再用Label显示出来。请帮忙,给个代码,谢谢!
展开
2个回答
展开全部
procedure TForm1.Button1Click(Sender: TObject);
var
f: TextFile;
stmp: string;
num: Integer;
begin
if FileExists('e:\abc123.txt') then
begin
AssignFile(f, 'e:\abc123.txt');
Reset(f);
while not Eof(f) do
begin
Readln(f, stmp);
num := StrToIntDef(stmp, -1);
if num <> -1 then
label1.Caption := FormatFloat('0.00', num/100);
end;
CloseFile(f);
end;
end;
var
f: TextFile;
stmp: string;
num: Integer;
begin
if FileExists('e:\abc123.txt') then
begin
AssignFile(f, 'e:\abc123.txt');
Reset(f);
while not Eof(f) do
begin
Readln(f, stmp);
num := StrToIntDef(stmp, -1);
if num <> -1 then
label1.Caption := FormatFloat('0.00', num/100);
end;
CloseFile(f);
end;
end;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询