fork download
  1. import java.util.Arrays;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. String raw = "\"AKINWALE JOHNSON ROTIMI \" \"100000072 \" \"1985"
  6. + "0217 \" \" \" \"0250000066 \""
  7. + "\" 08035558619\" \"22324902758 \" \"NG0250002 \" \"9113985 \"";
  8.  
  9. String[] split = raw.split("\\s*\"\\s*");
  10. Arrays.stream(split).forEach(System.out::println);
  11. }
  12. }
Success #stdin #stdout 0.09s 48352KB
stdin
Standard input is empty
stdout
AKINWALE JOHNSON ROTIMI

100000072

19850217



0250000066

08035558619

22324902758

NG0250002

9113985