gpt4 book ai didi

string - 从 TStringList 中删除字符串

转载 作者:行者123 更新时间:2023-12-03 14:55:01 26 4
gpt4 key购买 nike

我有一个包含项目的列表框或 ListView 。我有一个字符串列表,其中包含与列表框/ ListView 相同的项目(字符串)。我想从字符串列表中删除列表框/ ListView 中的所有选定项目。

怎么办?

for i:=0 to ListBox.Count-1 do
if ListBox.Selected[i] then
StringList1.Delete(i); // I cannot know exactly an index, other strings move up

最佳答案

for i := ListBox.Count - 1 downto 0 do
if ListBox.Selected[i] then
StringList1.Delete(i);

关于string - 从 TStringList 中删除字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6821919/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com