Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a default/official/recommended way to parse CSV files in C#? I don't want to roll my own parser.

Also, I've seen instances of people using ODBC/OLE DB to read CSV via the Text driver, and a lot of people discourage this due to its "drawbacks." What are these drawbacks?

Ideally, I'm looking for a way through which I can read the CSV by column name, using the first record as the header / field names. Some of the answers given are correct but work to basically deserialize the file into classes.

share|improve this question
1  

7 Answers

up vote 28 down vote accepted

Let a library handle all the nitty-gritty details for you! :-)

Check out FileHelpers and stay DRY - Don't Repeat Yourself - no need to re-invent the wheel a gazillionth time....

You basically just need to define that shape of your data - the fields in your individual line in the CSV - by means of a public class (and so well-thought out attributes like default values, replacements for NULL values and so forth), point the FileHelpers engine at a file, and bingo - you get back all the entries from that file. One simple operation - great performance!

share|improve this answer
Thanks. FileHelpers is what a lot of articles were pointing at also. – David Pfeffer Jan 17 '10 at 15:26

CsvHelper will read a CSV file into custom objects.

var csv = new CsvHelper( File.OpenRead( "file.csv" ) );
var myCustomObjects = csv.Reader.GetRecords<MyCustomObject>();

Sometimes you don't own the objects you're trying to read into. In this case, you can use fluent mapping because you can't put attributes on the class.

public sealed class MyCustomObjectMap : CsvClassMap<MyCustomObject>
{
    public MyCustomObjectMap()
    {
        Map( m => m.Property1 ).Name( "Column Name" );
        Map( m => m.Property2 ).Index( 4 );
        Map( m => m.Property3 ).Ignore();
        Map( m => m.Property4 ).TypeConverter<MySpecialTypeConverter>();
    }
}
share|improve this answer
1  
Great library! Works like a charm. – kubal5003 Feb 8 '12 at 14:48
3  
I agree with @kubal5003. What sold me on it was you have it available as a NuGet package. Thanks man, it is fast, and does all the csv reading I need. – Gromer Sep 7 '12 at 15:10
1  
It's damn fast. 1.3 million records read and deserialized in 10 seconds. – marisks Jan 16 at 14:50
I found this library a few days ago and am very impressed. – ProfK Apr 6 at 13:58

In a business application, i use the Open Source project on codeproject.com, CSVReader.

It works well, and has good performance. There is some benchmarking on the link i provided.

A simple example, copied from the project page:

using (CsvReader csv = new CsvReader(new StreamReader("data.csv"), true))
{
    int fieldCount = csv.FieldCount;
    string[] headers = csv.GetFieldHeaders();

    while (csv.ReadNextRecord())
    {
        for (int i = 0; i < fieldCount; i++)
            Console.Write(string.Format("{0} = {1};", headers[i], csv[i]));

        Console.WriteLine();
    }
}

As you can see, it's very easy to work with.

share|improve this answer

If you need only reading csv files then I recommend this library: A Fast CSV Reader
If you also need to generate csv files then use this one: FileHelpers v 2.0

Both of them are free and opensource.

share|improve this answer
This one, thankfully, has dynamic support. +1 – Nuzzolilo Sep 17 '12 at 19:45
FileHelpers has an appealing summary: filehelpers.com The FileHelpers are a free and easy to use .NET library to import/export data from fixed length or delimited records in files, strings or streams. – AnneTheAgile Oct 6 '12 at 0:19

Here is a helper class I use often, in case any one ever comes back to this thread (I wanted to share it).

I use this for the simplicity of porting it into projects ready to use:

public class CSVHelper : List<string[]>
{
  protected string csv = string.Empty;
  protected string separator = ",";

  public CSVHelper(string csv, string separator = "\",\"")
  {
    this.csv = csv;
    this.separator = separator;

    foreach (string line in Regex.Split(csv, System.Environment.NewLine).ToList().Where(s => !string.IsNullOrEmpty(s)))
    {
      string[] values = Regex.Split(line, separator);

      for (int i = 0; i < values.Length; i++)
      {
        //Trim values
        values[i] = values[i].Trim('\"');
      }

      this.Add(values);
    }
  }
}

And use it like:

public List<Person> GetPeople(string csvContent)
{
  List<Person> people = new List<Person>();
  CSVHelper csv = new CSVHelper(csvContent);
  foreach(string[] line in csv)
  {
    Person person = new Person();
    person.Name = line[0];
    person.TelephoneNo = line[1];
    people.Add(person);
  }
  return people;
}

[Updated csv helper: bug fixed where the last new line character created a new line]

share|improve this answer
3  
if any of the csv entries contains comma (,) this code will not work. – piedpiper Jun 12 '12 at 14:32
To keep things lightweight, I used a pipe character as the seperator. '|' – Base33 Jun 12 '12 at 16:45
excellent solution. Just a question about the 2nd snippet. What type of object is Person – Cocoa Dev Jan 23 at 14:34
@CocoaDev It is an class that contains two string properties - Name and TelephoneNo. Purely for the example though. If any of the properties was an integer it should be just a straight forward conversion (with check?). – Base33 Jan 23 at 16:59

I know its a bit late but just found a library Microsoft.VisualBasic.FileIO which has TextFieldParser class to process csv files.

Regards,

Sab

share|improve this answer
An example using that api; msdn.microsoft.com/en-us/library/cakac7e6(v=vs.90).aspx – AnneTheAgile Oct 6 '12 at 0:18

There's no official way I know of, but you should indeed use existing libraries. Here is one I found really useful from CodeProject:

http://www.codeproject.com/KB/database/CsvReader.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.