How do I remove objects from an Array in java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:23:09Zhttp://stackoverflow.com/feeds/question/112503http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java7How do I remove objects from an Array in java?ramayac2008-09-21T23:16:27Z2008-12-28T21:40:32Z
<p>Given an Array of <strong>n</strong> Objects, let's say is an <strong>Array of Strings</strong>, and it has the following values: </p>
<pre><code>foo[0]="a";
foo[1]="cc";
foo[2]="a";
foo[3]="dd";
</code></pre>
<p>What do I have to do to delete/remove all the Strings/Objects equal to <strong>"a"</strong> in the Array?<br />
Thanks!</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/112507#1125073Answer by Dustman for How do I remove objects from an Array in java?Dustman2008-09-21T23:18:06Z2008-09-21T23:32:04Z<p>Make a <code>List</code> out of the array with <code>Arrays.asList()</code>, and call <code>remove()</code> on all the appropriate elements. Then call <code>toArray()</code> on the 'List' to make back into an array again.</p>
<p>Not terribly performant, but if you encapsulate it properly, you can always do something quicker later on.</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/112509#112509-6Answer by alfinoba for How do I remove objects from an Array in java?alfinoba2008-09-21T23:19:47Z2008-09-21T23:19:47Z<p>Assign null to the array locations.</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/112542#11254220Answer by Chris Jester-Young for How do I remove objects from an Array in java?Chris Jester-Young2008-09-21T23:30:33Z2008-09-27T00:40:45Z<p>[If you want some ready-to-use code, please scroll to my "Edit3" (after the cut). The rest is here for posterity.]</p>
<p>To flesh out <a href="#112507" rel="nofollow">Dustman's idea</a>:</p>
<pre><code>List<String> list = new ArrayList<String>(Arrays.asList(array));
list.removeAll(Arrays.asList("a"));
array = list.toArray(array);
</code></pre>
<p>Edit: I'm now using <code>Arrays.asList</code> instead of <code>Collections.singleton</code>: singleton is limited to one entry, whereas the <code>asList</code> approach allows you to add other strings to filter out later: <code>Arrays.asList("a", "b", "c")</code>.</p>
<p>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 <em>new</em> array sized exactly as required, use this instead:</p>
<pre><code>array = list.toArray(new String[0]);
</code></pre>
<p><hr /></p>
<p>Edit3: If you use this code on a frequent basis in the same class, you may wish to consider adding this to your class:</p>
<pre><code>private static final String[] EMPTY_STRING_ARRAY = new String[0];
</code></pre>
<p>Then the function becomes:</p>
<pre><code>List<String> list = new ArrayList<String>(Arrays.asList(array));
list.removeAll(Arrays.asList("a"));
array = list.toArray(EMPTY_STRING_ARRAY);
</code></pre>
<p>This will then stop littering your heap with useless empty string arrays that would otherwise be <code>new</code>ed each time your function is called.</p>
<p>cynicalman's suggestion (see comments) will also help with the heap littering, and for fairness I should mention it:</p>
<pre><code>array = list.toArray(new String[list.size()]);
</code></pre>
<p>I prefer my approach, because it may be easier to get the explicit size wrong (e.g., calling <code>size()</code> on the wrong list).</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/114671#1146710Answer by shsteimer for How do I remove objects from an Array in java?shsteimer2008-09-22T12:50:22Z2008-09-22T13:06:36Z<p>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.</p>
<pre><code>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];
}
}
</code></pre>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/114720#1147200Answer by AngelOfCake for How do I remove objects from an Array in java?AngelOfCake2008-09-22T12:59:37Z2008-09-22T13:24:55Z<p>arrgh can't get code to show up correctly.
sorry got it working.
sorry again i don't think I read the question properly</p>
<pre><code>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++;
}
}
</code></pre>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/117345#1173450Answer by GHad for How do I remove objects from an Array in java?GHad2008-09-22T20:20:13Z2008-09-24T16:45:06Z<p>EDIT:</p>
<p>The point with the nulls in the array has been cleared. Sorry for my comments.
Greetz GHad</p>
<p>Original:</p>
<p>Ehm... the line</p>
<pre><code>array = list.toArray(array);
</code></pre>
<p>replaces all gaps in the array where the removed element has been with <strong>null</strong>. This might be <strong>dangerous</strong>, because the elements are removed, but the length of the array remains the same!</p>
<p>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:</p>
<pre><code> 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));
</code></pre>
<p>Gives:</p>
<pre><code>[a, bc, dc, a, ef]
[dc, ef, bc]
</code></pre>
<p>Where as the current accepted answer from Chris Yester Young outputs:</p>
<pre><code>[a, bc, dc, a, ef]
[bc, dc, ef, null, ef]
</code></pre>
<p>with the code</p>
<pre><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));
</code></pre>
<p>without any null values left behind.</p>
<p>Greetz GHad</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/119463#1194631Answer by rgrig for How do I remove objects from an Array in java?rgrig2008-09-23T06:55:15Z2008-09-23T06:55:15Z<p>You can always do:</p>
<pre><code>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);
</code></pre>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/130033#1300330Answer by DJClayworth for How do I remove objects from an Array in java?DJClayworth2008-09-24T21:15:40Z2008-09-24T21:15:40Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/272679#2726790Answer by Abhishek for How do I remove objects from an Array in java?Abhishek 2008-11-07T16:49:07Z2008-11-07T16:49:07Z<p>Thanks a lot!! very helpful</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/280004#2800040Answer by techrajesh for How do I remove objects from an Array in java?techrajesh2008-11-11T04:30:01Z2008-11-11T04:30:01Z<p>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</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/396725#3967250Answer by bassam mohammed for How do I remove objects from an Array in java?bassam mohammed2008-12-28T21:40:32Z2008-12-28T21:40:32Z<p>Insert new object: This command adds a new object to an array of objects. The added data is stored
in a file. The file is a text file that is comma delimited in which each entry (object) is found on a
separate line.</p>