node.js - csv parser skip an entire column -


i have csv file needs parsed , set of values file need stored in mysql database.

i writing script in javascript, using csv-parser module.

the data looks following in file

**section values  eu  asia  north_america**    page1   [data1] [data2]            .....           ......    page2   ......           ......           ......           .......    page3   .......   

so in above csv headers highlighted, objective skip section header , skip reading values in column page1, page2, page3 etc...

how can achieve above?


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -