fork(2) download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String s = "I love A. I hate B.";
  9. String res[] = s.split("(?<=\\p{Punct})");
  10. System.out.println(Arrays.toString(res));
  11.  
  12. // reconstruct the original
  13. String orig = "";
  14. for (String str : res)
  15. orig += str;
  16. System.out.println(orig);
  17. }
  18. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
[I love A.,  I hate B.]
I love A. I hate B.