fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args)
  4. {
  5. String str = "hello world !";
  6. str = str.replaceAll(" ", "02%");
  7. System.out.println(str);
  8. }
  9. }
Success #stdin #stdout 0.1s 321344KB
stdin
Standard input is empty
stdout
hello02%world02%!