fork(1) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. final String regex = "[^a-zA-Z0-9_.-]|(?<!\\d)\\.(?!\\d)|(?<!\\w)-(?!\\w)";
  13. final String string = "x.y.z a - b THE - . SOCIAL IMPACT OF THE CHERNOBYL DISASTER BY DAVID R. MARPLES "
  14. + "(ST. MARTIN'S PRESS: $35, CLOTH; $14.95, PAPER; 316 PP., ILLUSTRATED; 0-312-02432-0)\n\n\n";
  15.  
  16. String result=string.replaceAll(regex," ");
  17. System.out.println(result);
  18. }
  19. }
Success #stdin #stdout 0.08s 3359744KB
stdin
Standard input is empty
stdout
x y z a   b THE     SOCIAL IMPACT OF THE CHERNOBYL DISASTER BY DAVID R  MARPLES  ST  MARTIN S PRESS   35  CLOTH   14.95  PAPER  316 PP   ILLUSTRATED  0-312-02432-0