fork download
  1. class ReplaceFragmentIdiom
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. String x = "test message!";
  6. String y = "es";
  7. String z = "aster ";
  8.  
  9. String x2 = x.replace(y, z);
  10.  
  11. System.out.println(x2);
  12. }
  13. }
Success #stdin #stdout 0.12s 320576KB
stdin
Standard input is empty
stdout
taster t master sage!