C#中的列与文本文件中的数据分开

时间:2018-09-12 13:37:01

标签: c# console-application tabular

File txt

我在文本中有此文件,需要按表中的顺序组织。 OBS:需要成为控制台应用程序c#

我只做过

        StreamReader sr = new StreamReader(@"filepatch.txt");
        string ler = sr.ReadLine();
        string linha = ";";
        int cont = 0;


        while((linha = sr.ReadLine())!= null)
        {

            string col = linha.Split(';')[2];
            cont++;
            Console.WriteLine("{0} : {1}", cont, linha);

        }           

1 个答案:

答案 0 :(得分:0)

尝试此操作以获取文件文本:

var lines = System.IO.File.ReadAllLines(@"filepatch.txt");

然后,您可以使用返回的string[]来执行其余的逻辑。

foreach(var line in lines)
{
    string[] cols = line.Split(';');
    // Your logic here.  
}

干杯!