import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main
{
   public static void main(String[] args)
   {

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\",\"\",\"\",\"\"";

// split
System.out.println(str.split(",")[12]);

// indexOf
int index = 0;
for (int i = 0; i < 12; i++)
   index = str.indexOf(',', index)+1;
System.out.println(str.substring(index, str.indexOf(',', index)));

// regex
Pattern pattern = Pattern.compile("^(?:[^,]*,){12}([^,]*)");
Matcher matcher = pattern.matcher(str);
while (matcher.find()) {
    System.out.println(matcher.group(1));
}

// indexOf all
index = 0;
for (int i = 0; i < 12; i++)
   index = str.indexOf(',', index)+1;
System.out.println(str.substring(index));

// regex all
pattern = Pattern.compile("^(?:[^,]*,){12}(.*)");
matcher = pattern.matcher(str);
while (matcher.find()) {
    System.out.println(matcher.group(1));
}

}
}