Removing an item of 'n' length from an arraylist
I have been trying for 3 hours and there must be something that I am missing.
I can get it to remove something from the spot lets say 3, but I cannot get it to remove all items in the list that are of the length 3. Anyone have an idea of what I may be doing wrong? Can I use something like:
myList.remove(myList.length(3)); ?
I jsut cant get it.

