fork download
  1. import java.util.regex.Matcher;
  2. import java.util.regex.Pattern;
  3.  
  4. public class Main
  5. {
  6. public static void main(String[] args)
  7. {
  8.  
  9. String str = "\"2000-07-01 14:29:12\",\"2020-07-01 14:29:12\",,\"Property Inspection\",\"maryam.com\",\"Bakar\",\"Maryam\",\"915ae8fa7cdb44b3-1368080159272\",\"05/21/2013 07:28:59\",\"05/09/2013 06:15:59\",\"Property Inspection\",\"2\",\"I AM NUMBER 12\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"05/09/2013\",\"\",\"\",\"\",\"\",\"\",\"05/09/2013\",\"\",\"False\",\"False\",\"False\",\"False\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"False\",\"\",\"\",\"False\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"05/09/2013\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"05/09/2013\",\"\",\"1.5678106,103.6354891\",\"\",\"\",\"\"";
  10.  
  11. // split
  12. System.out.println(str.split(",")[12]);
  13.  
  14. // indexOf
  15. int index = 0;
  16. for (int i = 0; i < 12; i++)
  17. index = str.indexOf(',', index)+1;
  18. System.out.println(str.substring(index, str.indexOf(',', index)));
  19.  
  20. // regex
  21. Pattern pattern = Pattern.compile("^(?:[^,]*,){12}([^,]*)");
  22. Matcher matcher = pattern.matcher(str);
  23. while (matcher.find()) {
  24. System.out.println(matcher.group(1));
  25. }
  26.  
  27. // indexOf all
  28. index = 0;
  29. for (int i = 0; i < 12; i++)
  30. index = str.indexOf(',', index)+1;
  31. System.out.println(str.substring(index));
  32.  
  33. // regex all
  34. pattern = Pattern.compile("^(?:[^,]*,){12}(.*)");
  35. matcher = pattern.matcher(str);
  36. while (matcher.find()) {
  37. System.out.println(matcher.group(1));
  38. }
  39.  
  40. }
  41. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
"I AM NUMBER 12"
"I AM NUMBER 12"
"I AM NUMBER 12"
"I AM NUMBER 12","","","","","","","","","","","","","","","","","","","","","","05/09/2013","","","","","","05/09/2013","","False","False","False","False","","","","","","","","","","","False","","","False","","","","","","","","","","","","","","","","","","05/09/2013","","","","","","","","","","","05/09/2013","","1.5678106,103.6354891","","",""
"I AM NUMBER 12","","","","","","","","","","","","","","","","","","","","","","05/09/2013","","","","","","05/09/2013","","False","False","False","False","","","","","","","","","","","False","","","False","","","","","","","","","","","","","","","","","","05/09/2013","","","","","","","","","","","05/09/2013","","1.5678106,103.6354891","","",""