Import csv files

Hey,
Does anyone know how to import .csv files using VC++? Is there any class or function to do this? A sample code or any class or function name that can do this will be very useful.

Thanks in advance

Comments

  • : Hey,
    : Does anyone know how to import .csv files using VC++? Is there any class or function to do this? A sample code or any class or function name that can do this will be very useful.
    :
    : Thanks in advance
    :

    file format is simply fields deliminated by commas -- or maybe tabs. So you can use strtok(), or any other number of techniques, to extract the fields and put the strings anywhere you like.

    here's more info: http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion