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!

link|improve this question

You can't resize an array in Java. I assume you don't want to just null the elements since that would be trivial. Do you want to shift the other elements to remove the gaps? – Dan Dyer Sep 21 '08 at 23:17
It is trivial, now that I know I can do it. ;) Thanks! – ramayac Sep 21 '08 at 23:55
Please review the accepted answer. See my post for details. Greetz GHad – GHad Sep 22 '08 at 20:22
feedback

10 Answers

up vote 38 down vote accepted

[If you want some ready-to-use code, please scroll to my "Edit3" (after the cut). The rest is here for posterity.]

To flesh out Dustman's idea:

List<String> list = new ArrayList<String>(Arrays.asList(array));
list.removeAll(Arrays.asList("a"));
array = list.toArray(array);

Edit: I'm now using Arrays.asList instead of Collections.singleton: singleton is limited to one entry, whereas the asList approach allows you to add other strings to filter out later: Arrays.asList("a", "b", "c").

Edit2: The above approach retains the same array (so the array is still the same length); the element after the last is set to null. If you want a new array sized exactly as required, use this instead:

array = list.toArray(new String[0]);


Edit3: If you use this code on a frequent basis in the same class, you may wish to consider adding this to your class:

private static final String[] EMPTY_STRING_ARRAY = new String[0];

Then the function becomes:

List<String> list = new ArrayList<String>(Arrays.asList(array));
list.removeAll(Arrays.asList("a"));
array = list.toArray(EMPTY_STRING_ARRAY);

This will then stop littering your heap with useless empty string arrays that would otherwise be newed each time your function is called.

cynicalman's suggestion (see comments) will also help with the heap littering, and for fairness I should mention it:

array = list.toArray(new String[list.size()]);

I prefer my approach, because it may be easier to get the explicit size wrong (e.g., calling size() on the wrong list).

link|improve this answer
Excelent, thanks! – ramayac Sep 21 '08 at 23:32
Glad you liked. I revised my entry to support removing all instances of "a", not just the first. :-) – Chris Jester-Young Sep 21 '08 at 23:38
Ooff... shot down at the finish line. Knew I should have kept editing. This system takes some getting used to. Good edit! – Dustman Sep 22 '08 at 1:20
Please consider my post. I think your code is flawed. Thanks – GHad Sep 22 '08 at 20:20
GHad: Have you read my Edit2 above? It addresses exactly what you mentioned, and it was posted before your post. – Chris Jester-Young Sep 23 '08 at 2:24
show 2 more comments
feedback

Make a List out of the array with Arrays.asList(), and call remove() on all the appropriate elements. Then call toArray() on the 'List' to make back into an array again.

Not terribly performant, but if you encapsulate it properly, you can always do something quicker later on.

link|improve this answer
Thank you very much! – ramayac Sep 21 '08 at 23:26
2  
Re your comment: It's okay, you'll get used to it soon. :-) I posted my post because I didn't want readers to get the idea that elements can be removed from the result of Arrays.asList() (it's an immutable list), so I thought an example could take care of that. :-) – Chris Jester-Young Sep 22 '08 at 5:31
Uh, I meant un-resizeable list (add() and remove() do not work). :-P It still has a usable set() method. :-) – Chris Jester-Young Sep 22 '08 at 5:33
Though it may seem strange, my experience is that the performance penalty of this approach is minimal. – Marcus Downing Sep 22 '08 at 14:25
1  
What's with this? @Chris pointed out that the list resulting from Arrays.asList() doesn't support remove(). So is this answer completely invalid? Looks like maybe some comments got removed, so I don't know if this was discussed. – LarsH Mar 22 at 11:16
show 1 more comment
feedback

You can always do:

int i, j;
for (i = j = 0; j < foo.length; ++j)
  if (!"a".equals(foo[j])) foo[i++] = foo[j];
foo = Arrays.copyOf(foo, i);
link|improve this answer
feedback

Something about the make a list of it then remove then back to an array strikes me as wrong. Haven't tested, but I think the following will perform better. Yes I'm probably unduly pre-optimizing.

boolean [] deleteItem = new boolean[arr.length];
int size=0;
for(int i=0;i<arr.length;i==){
   if(arr[i].equals("a")){
      deleteItem[i]=true;
   }
   else{
      deleteItem[i]=false;
      size++;
   }
}
String[] newArr=new String[size];
int index=0;
for(int i=0;i<arr.length;i++){
   if(!deleteItem[i]){
      newArr[index++]=arr[i];
   }
}
link|improve this answer
feedback

arrgh can't get code to show up correctly. sorry got it working. sorry again i don't think I read the question properly

String  foo[] = {"a","cc","a","dd"},
    			remove = "a";
    	boolean gaps[] = new boolean[foo.length];
    	int newlength = 0;

    	for(int c = 0;c<foo.length;c++)
    	{
    		if(foo[c].equals(remove))
    		{
    			gaps[c] = true;
    			newlength++;
    		}
    		else gaps[c] = false;

    		System.out.println(foo[c]);
    	}

    	String newString[] = new String[newlength];

    	System.out.println("");

    	for(int c1=0,c2=0 ;c1<foo.length;c1++)
    	{
    		if(!gaps[c1])
    		{
    			newString[c2] = foo[c1];
    			System.out.println(newString[c2]);
    			c2++;
    		}
    	}
link|improve this answer
feedback

EDIT:

The point with the nulls in the array has been cleared. Sorry for my comments. Greetz GHad

Original:

Ehm... the line

array = list.toArray(array);

replaces all gaps in the array where the removed element has been with null. This might be dangerous, because the elements are removed, but the length of the array remains the same!

If you want to avoid this, use a new Array as parameter for toArray(). If you don`t want to use removeAll, a Set would be an alternative:

    	String[] array = new String[] { "a", "bc" ,"dc" ,"a", "ef" };

    	System.out.println(Arrays.toString(array));

    	Set<String> asSet = new HashSet<String>(Arrays.asList(array));
    	asSet.remove("a");
    	array = asSet.toArray(new String[] {});

    	System.out.println(Arrays.toString(array));

Gives:

[a, bc, dc, a, ef]
[dc, ef, bc]

Where as the current accepted answer from Chris Yester Young outputs:

[a, bc, dc, a, ef]
[bc, dc, ef, null, ef]

with the code

	String[] array = new String[] { "a", "bc" ,"dc" ,"a", "ef" };

	System.out.println(Arrays.toString(array));

	List<String> list = new ArrayList<String>(Arrays.asList(array));
	list.removeAll(Arrays.asList("a"));
	array = list.toArray(array);		

	System.out.println(Arrays.toString(array));

without any null values left behind.

Greetz GHad

link|improve this answer
Nice try, but no cigar. I posted an edit on exactly this topic, way before you made your post. So, although you're "technically correct", I don't appreciate your trying to get people to displace my post. I just thought you should know that. – Chris Jester-Young Sep 23 '08 at 2:29
It's not about post displacement, but about avoiding errors and dangerous code. Greetz GHad – GHad Sep 23 '08 at 6:10
Errors can be avoided if people read my whole post (including both addenda). If people just cut and paste code without thinking, then they deserve everything they get. Programmers get paid what they do because they exercise their brains...I hope. [continues] – Chris Jester-Young Sep 24 '08 at 10:50
[continued] Your code is "dangerous" too if people aren't cognisant of the fact that by using a hash, the items become disordered. Of course, thinking programmers realise this, but if you call my code dangerous because people cut and paste without thinking, it's only fair to say the same of yours. – Chris Jester-Young Sep 24 '08 at 10:53
Sure, you're right about the hash. And as the point is clear by your 2nd edit, I must have overread this. As said, just wanted to avoid an array with null values and duplication. You may change your code based upon your 2nd edit and leave a comment in Edit3 about the array. Didn't want to attack you – GHad Sep 24 '08 at 16:37
show 1 more comment
feedback

You can use external library:
org.apache.commons.lang.ArrayUtils.remove(java.lang.Object[] array, int index)
It is in project Apache Commons Lang http://commons.apache.org/lang/

link|improve this answer
feedback

It depends on what you mean by "remove"? An array is a fixed size construct - you can't change the number of elements in it. So you can either a) create a new, shorter, array without the elements you don't want or b) assign the entries you don't want to something that indicates their 'empty' status; usually null if you are not working with primitives.

In the first case create a List from the array, remove the elements, and create a new array from the list. If performance is important iterate over the array assigning any elements that shouldn't be removed to a list, and then create a new array from the list. In the second case simply go through and assign null to the array entries.

link|improve this answer
feedback

i dont know...i have been trying this for a while for my java assignment///but couldnt find any soln/....anybody please post the solution

link|improve this answer
feedback

Assign null to the array locations.

link|improve this answer
Could you explain? – ramayac Sep 22 '08 at 0:08
feedback

Your Answer

 
or
required, but never shown

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