fork download
  1. import java.util.*;
  2. import java.io.*;
  3.  
  4. class Ideone
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String text = "Here…It is safer... The end.";
  9. String[] chunks = text.split("\\s*(?:…|\\.{3})\\s*");
  10. System.out.println(Arrays.toString(chunks));
  11. }
  12. }
Success #stdin #stdout 0.07s 52516KB
stdin
Standard input is empty
stdout
[Here, It is safer, The end.]