SyntaxFix
Write A Post
Hire A Developer
Questions
Use a iterator to loop through list and then delete the required object.
Iterator itr = a.iterator(); while(itr.hasNext()){ if(itr.next().equals("acbd")) itr.remove(); }