主题:indexof的用法
totti3435
[专家分:0] 发布于 2007-12-10 18:39:00
小弟想问一下个位大虾indexof的用法.例如我知道一个文件中有几个字符bf但在不同的行.能否用indexof查找,他返回是行数?
回复列表 (共1个回复)
沙发
linjipeng0 [专家分:220] 发布于 2007-12-25 09:37:00
var ts:TStringList;
i : Integer;
F: TextFile;
S: string;
begin
AssignFile(F,'文件的位置')
Reset(F); //只读打开
while not Eof(F) do
begin
Readln(F, name, s);
ts.append(s);
end;
CloseFile(F);
for i=0 to ts.count-1 do
begin
if pos('bf',ts.string[i])>0
begin
showmessage('行数'+Inttostr(i));//得到符合条件的行数
end;
end;
end;
我来回复