Answered
Remove item from numeric list
Lets say I have a numeric list like this.
mylist ="1,5,11,17,19"
Now I need to remove just 11 from the mylist. (delete_value = 11)
How do I remove the delete_value from mylist
Its like the opposite of ListAppend?
So I need the new list to be ("1,5,17,19")
