我有一个看起来像这样的文本文件:
John,Gauthier,blue,May
Henry,Ford,Red,June
James,Bond,Orange,December
我想将它拆分为一个二维字符串数组,这样我就可以将每行分开,然后将每个单词分开。前任:
mystring[0][0] = "John"
mystring[1][3] = "June"
mystring[2][2] = "Orange"
这是我现在所做的:
string[] words = new string [100];
System.IO.StreamReader myfile = new System.IO.StreamReader("c:\\myfile.csv");
while (fichier.Peek() != -1)
{
i++;
words = myfile.ReadLine().Split(',');
}
我被困住了。我可以将其拆分为一维字符串数组,但不能拆分为二维字符串数组。我想我需要拆分两次;第一次使用'\n',第二次使用',',然后将两者放在一起。