tototoshi/scala-csv

Way to skip the header line when reading?

analytically opened this issue · 1 comments

Is there a way to skip the header when doing foreach?

Sorry for late response.

like this:

val reader = CSVReader.open("a.csv")
reader.readNext()
reader.foreach { line => ... }