show/hide this revision's text 2 edited tags
show/hide this revision's text 1

How do I remove objects from an Array in java?

Given an Array of n Objects, let's say is an Array of Strings, and it has the following values:

foo[0]="a";
foo[1]="cc";
foo[2]="a";
foo[3]="dd";

What do I have to do to delete/remove all the Strings/Objects equal to "a" in the Array?
Thanks!