I have the following Code about iterating over a list of elements in a CSV file.
for (CSVRecord csvRecord : csvParser) {
// Accessing Values by Column Index
String name = csvRecord.get(0);
dates_csv.add(name);
}
}
How can I start the iteration starting from Index 1 in this for loop. I am still new to java :)