如何检测stringlist(50分)

  • 主题发起人 主题发起人 八神庵
  • 开始时间 开始时间

八神庵

Unregistered / Unconfirmed
GUEST, unregistred user!
比如listbox里有下列几个字符串
abc
bcd
ddd
在这三个字符串中检测没有123则执行程序
var
I:integer;
begin
for I:= 0 to listbox.count-1 do
。。。。这段代码
如果在这里没检测到123则
label1.caption:='没有检测到123';
 
ListBox1.Items.IndexOf('123') = -1 Then
//没有
 
if listbox.items.indexof('123') = -1 then
label1.caption:='没有检测到123';
 
或者自己手动查找
var
i:Integer;
isFinded:boolean;
begin
for I:= 0 to listbox.count-1 do
if listbox.Strings='123' then
begin
isFinded:=true; break;
end;

if Not(isFinded) then
label1.caption:='没有检测到123';
 
谢谢两位大哥
 
啊!三位呀,呵呵
 
多人接受答案了。
 

Similar threads

回复
0
查看
867
不得闲
回复
0
查看
1K
不得闲
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
916
SUNSTONE的Delphi笔记
S
后退
顶部