A Almog Active Member Licensed User Nov 21, 2018 #1 Hello, Does anybody know if there is a way to check if an item exists in a list, finding by index? for example: If list1.isexist(8) Then ...... End if Thanks in advance
Hello, Does anybody know if there is a way to check if an item exists in a list, finding by index? for example: If list1.isexist(8) Then ...... End if Thanks in advance
DonManfred Expert Licensed User Longtime User Nov 21, 2018 #2 indexof? If the list size is bigger then 8 then the item with index 8 exists. Upvote 0
A Almog Active Member Licensed User Nov 21, 2018 #3 DonManfred said: indexof? Click to expand... Thanks, but indexof is used to get the index by the item, and I need to get the existence of the item by the index. I need to: 'input' is the index, 'output' is the existence of the item. Thanks in advance Upvote 0
DonManfred said: indexof? Click to expand... Thanks, but indexof is used to get the index by the item, and I need to get the existence of the item by the index. I need to: 'input' is the index, 'output' is the existence of the item. Thanks in advance
DonManfred Expert Licensed User Longtime User Nov 21, 2018 #4 Almog said: I need to: 'input' is the index, 'output' is the existence of the item. Click to expand... DonManfred said: If the list size is bigger then 8 then the item with index 8 exists. Click to expand... there are no holes in a list Upvote 0
Almog said: I need to: 'input' is the index, 'output' is the existence of the item. Click to expand... DonManfred said: If the list size is bigger then 8 then the item with index 8 exists. Click to expand... there are no holes in a list
A Almog Active Member Licensed User Nov 21, 2018 #5 DonManfred said: If the list size is bigger then 8 then the item with index 8 exists. Click to expand... I forgot this, thank you very much Upvote 0
DonManfred said: If the list size is bigger then 8 then the item with index 8 exists. Click to expand... I forgot this, thank you very much