fork download
  1. import java.util.*;
  2.  
  3. class Ideone {
  4. public static void main (String[] a) {
  5. String text = "hello, darkness my old friend.\nI've come to you again\r\nasd\n 123123";
  6. String[] separators = text.split("[\\w'-]+");
  7. Arrays.stream(separators).forEach(s -> System.out.format("\"%s\"\n", s));
  8. }
  9. }
Success #stdin #stdout 0.08s 711680KB
stdin
Standard input is empty
stdout
""
", "
"   "
" "
" "
".
"
"   "
" "
" "
" "
"
"
"
 "