fork download
  1. class RemoveWord
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. String s1 = "boys will be boys";
  6. String w = "boys";
  7.  
  8. String s2 = s1.replace(w, "");
  9.  
  10. System.out.println(s2);
  11. }
  12. }
Success #stdin #stdout 0.09s 320576KB
stdin
Standard input is empty
stdout
 will be