Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to read csv file. CSV file consist of two columns separated by semi - colon(;). I am able to read CSV file using StreamReader and able to separate each line by Split() function. I want to store each column into separate array and then display it. Is it possible to do that.

Thanks, Rushabh Shah.

share|improve this question
(not that it matters, but if the delimiter is ; it isn't strictly CSV, no?) – Marc Gravell Mar 12 '11 at 14:17
@Marc: unfortunately in non-english cultures (e.g. Italian) when you save an excel to CSV it uses ";" as separator... this has made CSV a non-standard imo :( – digEmAll Mar 12 '11 at 14:22
6  
I always read CSV as character-separated-values since people call files CSV even if they don't use a comma as separator. And there are so many dialects with different quoting or escaping rules in practice that you can't really talk of a standard even if in theory there is a RFC. – CodesInChaos Mar 12 '11 at 14:31
1  
still no accepted answer, Rushabh? – T.W.R.Cole Jan 28 at 20:13

7 Answers

LINQ way:

var lines = File.ReadAllLines("test.txt").Select(a => a.Split(';'));
var csv = from line in lines
          select (from piece in line
                  select piece);
share|improve this answer
1  
Maybe I'm missing something, but I'm not sure what the point of your csv variable is - aren't you just re-creating the same data structure that is alread in lines? – Ben Hughes May 14 at 1:10

You can do it like this:

static void Main(string[] args)
    {
        var reader = new StreamReader(File.OpenRead(@"C:\test.csv"));
        List<string> listA = new List<string>();
        List<string> listB = new List<string>();
        while (!reader.EndOfStream)
        {
            var line = reader.ReadLine();
            var values = line.Split(';');

            listA.Add(values[0]);
            listB.Add(values[1]);
        }
    }
share|improve this answer
1  
Thanks for this, I had forgotten how to split lines in a csv file (dumb me!) but your solution helped me :) – Hallaghan Sep 15 '11 at 15:58

I usually use this parser from codeproject, since there's a bunch of character escapes and similar that it handles for me.

share|improve this answer
this thing is very good and fast. If you're in a business situation and need to get cracking use this. – gjvdkamp Mar 12 '11 at 14:45

You can't create an array immediately because you need to know the number of rows from the beginning (and this would require to read the csv file twice)

You can store values in two List<T> and then use them or convert into an array using List<T>.ToArray()

Very simple example:

var column1 = new List<string>();
var column2 = new List<string>();
using (var rd = new StreamReader("filename.csv"))
{
    while (!rd.EndOfStream)
    {
        var splits = rd.ReadLine().Split(';');
        column1.Add(splits[0]);
        column2.Add(splits[1]);
    }
}
// print column1
Console.WriteLine("Column 1:");
foreach (var element in column1)
    Console.WriteLine(element);

// print column2
Console.WriteLine("Column 2:");
foreach (var element in column2)
    Console.WriteLine(element);
share|improve this answer
You might want to correct your copy&paste bugs and splits[2] – Jakub Konecki Mar 12 '11 at 14:21
@Jakub: yes, fixed thanks ;) – digEmAll Mar 12 '11 at 14:24

Probably it will better to use the OleDb provider for this purpose:

Reading CSV files with OleDbCommand / OleDbDataAdapter

Connection strings for Textfile

share|improve this answer
var firstColumn = new List<string>();
var lastColumn = new List<string>();

// your code for reading CSV file

foreach(var line in file)
{
    var array = line.Split(';');
    firstColumn.Add(array[0]);
    lastColumn.Add(array[1]);
}

var firstArray = firstColumn.ToArray();
var lastArray = lastColumn.ToArray();
share|improve this answer
Thanks for your help. It might help to solve my problem. Actually I have to read data from file and then insert into database. At time of inserting I am getting primary key constraint error(as I already have data in database). So, I need to program such that with variable already exist then update the data. – Rushabh Shah Mar 12 '11 at 14:25
I assume the first value if PK - you need to get a record by id from database and if it exists than issue an UPDATE statement, otherwise insert a new record. – Jakub Konecki Mar 12 '11 at 16:15

Just came across this library: https://github.com/JoshClose/CsvHelper

Very intuitive and easy to use. Has a nuget package too which made is quick to implement: http://nuget.org/packages/CsvHelper/1.17.0. Also appears to be actively maintained which I like.

Configuring it to use a semi-colon is easy: https://github.com/JoshClose/CsvHelper/wiki/Custom-Configurations

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.