coder,
As stated the first 32 lines will be ignored
Next i would live to take the information from column2 and column3 and store it in a <vector> since it would be beneficial for dynamic allocation.
Column2 data will have (x) rows before it starts reading a value:
19/08/2013 10:39:47.000,
0,0.009,29.621,-0.002,0.014,-4.227,1508.28
Once column2 starts reading a value I would like to start storing data for column2 and column3 at that row++:
19/08/2013 10:51:32.000,
1547.122,1.543,29.552,59.068,35.812,22.495,1545.548
Then I want to stop storing once column3 reaches it's maximum value:
19/08/2013 10:58:23.000,1502.544,
223.176,12.228,41.002,35.662,28.057,1502.078
Then I want to output the data that was store to a .csv file as column3, column2.
I hope this helps clarify and I appologize for not posting this earlier.