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

arrght

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("a")c = 0;c<foo.length;c++)
    	{
    		if(foo[c].equals(remove))
    		{
    			foo[c]="";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++;
    		}
    	}
show/hide this revision's text 1

arrght can't get code to show up correctly. sorry got it working.

for(int c=0;c<foo.length;c++){
   if(foo[c].equals("a")) {
      foo[c]="";}
}