标签: delphi
我有一个带有items的列表框。我循环遍历列表框以一次获得一个项目并被分配给一个字符串变量。问题是..有没有办法检查列表是否包含指定的字符串?提前谢谢。
答案 0 :(得分:10)
以这种方式尝试:
if ListBox1.Items.IndexOf('yourString') > -1 then begin //whatever you want to do if your listbox contains 'yourString' end;