fork download
  1. class Ideone {
  2. public static void main (String[] args) {
  3. String str = "'twas, 't,[order'd], king's, o', 'Brutus!', ''At";
  4. str = str.replaceAll(" *, *", " ").replaceAll("[^\\w' !]", "")
  5. .replaceAll("'(\\S*)'", "$1");
  6. System.out.println(str);
  7. }
  8. }
Success #stdin #stdout 0.08s 48144KB
stdin
Standard input is empty
stdout
'twas 't order'd king's o' Brutus! At