I'm working some pricing files from Carnival Cruise and they all have some dumb extra sort of "comment" line at the top of every CSV file that simply needs skipped. The NEXT line are the headers.
I would suggest some feature to skip an arbitrary number of lines at the start of the file which would boil down to just calling iterator.next() that many times to skip.
I'm working some pricing files from Carnival Cruise and they all have some dumb extra sort of "comment" line at the top of every CSV file that simply needs skipped. The NEXT line are the headers.
Ex:
I would suggest some feature to skip an arbitrary number of lines at the start of the file which would boil down to just calling
iterator.next()
that many times to skip.