A Andre Pagliuso Member Licensed User Longtime User Aug 1, 2018 #1 How to clear the contents of an array?? Dim vsArray(2) as string vsArray(0) = "1" vsArray(1) = "2" vsArray = "" <---- ????????? This is my question, how to zero the values inside this array?
How to clear the contents of an array?? Dim vsArray(2) as string vsArray(0) = "1" vsArray(1) = "2" vsArray = "" <---- ????????? This is my question, how to zero the values inside this array?
Star-Dust Expert Licensed User Longtime User Aug 1, 2018 #2 B4X: vsArray=array as string() Or Re-Dim Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Aug 1, 2018 #4 Tip: In most cases it is better to use List instead of array. Upvote 0