delphi 里面的 List: TStringList; 如何去替换其中的某个值

 我来答
所失佛
2011-06-15 · 超过24用户采纳过TA的回答
知道答主
回答量:56
采纳率:0%
帮助的人:75.2万
展开全部
var
list: TStringList;
idx: Integer;
i: Integer;
begin
list := tstringlist.Create;
list.Add('a');
list.Add('b');
list.Add('c');
idx := list.indexof('a');//这个地方要增加判断idx是不是-1
list.Delete(idx);
list.Insert(idx,'d');
end;
//===============可以封装到一个方法里
function replace(var list:TStringList; a, b: string): Boolean;
var
idx: Integer;
begin
Result := False;
if not Assigned(list) then Exit;
idx := list.indexof(a);
if idx>-1 then
begin
list.Delete(idx);
list.Insert(idx,b);
Result := True;
end;
end;
//=============还可以这样做
function replace2(var list: TStringList; a, b: string): Boolean;
var
idx: Integer;
begin
Result := False;
if not Assigned(list) then Exit;
idx := list.indexof(a);
if idx>-1 then
begin
list.Strings[idx]:= b;
Result := True;
end;
end;
追问
大侠,这个只能替换为A的那一行,比如提示SAAA,就替换不了啦,有没有QQ可以联系哈
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式