User Profile
Collapse
-
Well I'm certainly an idiot. It actually worked fine. Always a good idea not to start off with an empty array if you don't want to end up with one. -
Removing spaces from an ArrayList
I'm trying to make a method that removes all cells that are just spaces from an ArrayList. So far I have this:
This unfortunately seems to return...Code:public ArrayList removeSpace() { Iterator<String> it = array.iterator(); while (it.hasNext()) { if (it.next().equals(" ")) { it.remove(); } } return array;
No activity results to display
Show More
Leave a comment: