Filtered Arrays

After filtering an array I want to be able to delete the filtered objects from the source array. Currently I filter the array and delete the items but it doesn’t delete the objects from the correct indexes of the source array. Is there a good function for doing this? It seems I need to track the source array index.

Thank you.

hi @jport1130,
Can you share the code you are using to do so.

There is a possibility that you are getting a copy when you filter and then removing the items could be from the copy not the original.

cheers,

This topic was automatically closed after 166 days. New replies are no longer allowed.