fork(1) 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 content = new String("I, am, the, goddman, Batman");
  9. String[] pieces = content.split("(?<=, )");
  10.  
  11. for(String piece : pieces){
  12. System.out.println("'"+piece+"'");
  13. }
  14. }
  15. }
Success #stdin #stdout 0.03s 245632KB
stdin
Standard input is empty
stdout
'I, '
'am, '
'the, '
'goddman, '
'Batman'