本文整理自网络,侵删。
procedure TForm1.Btnx_1Click(Sender: TObject);var IdexA:Integer; ListA:TStringList;begin try ListA:=TStringList.Create; ListA.Add('banana'); ListA.Add('Apple'); ListA.Add('banana'); ListA.Add('Pear'); ListA.Add('Orange');
ListA.Sorted:=True;
IdexA:=-1; ListA.Find('banana',IdexA); ShowMessageFmt('%D',[IdexA]); finally FreeAndNil(ListA); end;end;
相关阅读 >>
Delphi windows 下用 Delphi 代码杀死进程,或者杀死自己
Delphi中实现hextostr函数和strtohex函数
delphDelphi chromium embedded 清除指定链接浏览器缓存、cookies
更多相关阅读请进入《Delphi》频道 >>