Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using java.util.ArrayList, I want to remove all the occurrences of a particular element.

    List<String> l = new ArrayList<String>();
    l.add("first");
    l.add("first");
    l.add("second");

    l.remove("first");

Its removing only the first occurrence. But I want all the occurrences to be removed after l.remove("first"); I except list to be left out only with the value "second". I found by googling that it can be achieved by creating new list and calling list.removeAll(newList). But is it possible to remove all occurrences without creating new list or is there any API available to achieve it ? Any help will be really appreciated.

share|improve this question

4 Answers

up vote 20 down vote accepted
l.removeAll(Collections.singleton("first"));
share|improve this answer
while(l.remove("first")) { }

This removes all elements "first" from the list.

share|improve this answer
List.remove() returns boolean value. – Rohit Jain Nov 26 '12 at 13:37
@RohitJain it returns a boolean value and at the same time removes the value. docs.oracle.com/javase/6/docs/api/java/util/… – KyelJmD Nov 26 '12 at 13:41
@KyelJmD.. Yeah that's true, but you can't compare the boolean return value with null. Just remove the later part in while loop. – Rohit Jain Nov 26 '12 at 13:41
I confused it with the remove(int index) overload. I'll edit the answer. – looper Nov 26 '12 at 13:43

Since in your example you are using Strings I guess did should do the trick.

for(int i = 0; i < list.size();i++){
    if(list.get(i).equals(someStringNameOrValue)){
        list.remove(i--);
    }
}

Looks like I misunderstood your question. I updated my answer. Am I right? you want to remove all occurrences of "first" ?

share|improve this answer
Your previous answer was correct. – Rohit Jain Nov 26 '12 at 13:38
You will need to remove from the end to avoid skipping elements or you can list.remove(i--); – Peter Lawrey Nov 26 '12 at 13:40
Oh I see, fixed it. – KyelJmD Nov 26 '12 at 13:42
list.removeAll(Arrays.asList("someDuplicateString));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.