show/hide this revision's text 2 added 92 characters in body

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));

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

without any null values left behind.

Greetz GHad

show/hide this revision's text 1

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));

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

without any null values left behind.

Greetz GHad