I am trying to create an array from a string and splitting with a comma, and then looking to removing one array from, I have read several posts but cannot get any of these to work, so any help is really appreciated.
Dim stringArr As Array = tbOldValues.Text.Split(","c)
Dim FilterData As Array = tkbExistingNames.Text.Split(","c)
The above assigns the array, how would I achieve to remove stringArr from FilterData?