fork download
  1. public class Main {
  2. public static void main(String [] args) {
  3. String str = "They say 2 + 2 is 4!!";
  4. System.out.println(str);
  5. str = str.replaceAll("[^a-zA-Z]"," " );
  6. System.out.println(str);
  7. }
  8. }
Success #stdin #stdout 0.02s 245632KB
stdin
Standard input is empty
stdout
They say 2 + 2 is 4!!
They say       is