I am trying to figure out how to write a method that will remove letters in a
string based on another string. The method would end up like so:
removeLetter("file", "fe")
The only thing that should be returned is the string "il". So far I have something like this:
public class h 
{
 public static void main(String[] args)
 {
   String a="file";
   String b="fe";
   char letter;
   int i;
   int j;
   for (letter = 'a'; letter <= 'z'; letter++)
   {
      for (i=0; i < a.length()-1; i++)
      {
          for (j=0; j < b.length()-1; j++) // This is the loop i get stuck on
          {     
              char r = b.charAt(j);
              char s = a.charAt(i);
              if ( letter == r && letter == s);
                  System.out.print(r + " " + s);        
          }
      } 
   }         
 }
} 
I know the bottom part is wrong but I am not sure where to go from here.
 
     
    