You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have need for reading CSV files from multiple sources, some of which have multi-row headers (only one of which has actual column headers). It would be nice to be able to tell the parser to ignore the first X rows of a file and/or look for headers at a set row number.
The text was updated successfully, but these errors were encountered:
Now, a workaround would be to chop the first n lines out of the string before it hits CSV.
str = str.substring(str.indexOf( line_delimiter ) + 1);
Repeat for how many lines you want to ignore.
I have need for reading CSV files from multiple sources, some of which have multi-row headers (only one of which has actual column headers). It would be nice to be able to tell the parser to ignore the first X rows of a file and/or look for headers at a set row number.
The text was updated successfully, but these errors were encountered: