Setting Row Headers In A CSV
-
2012年3月13日 10:54
- 編集済み matta0990 2012年3月13日 15:46 error
すべての返信
-
2012年3月13日 12:38
No error checking here to ensure that each row actually contains the columns, but you get the idea:
List<string[]> parsedData = new List<string[]>(); using (StreamReader readfile = new StreamReader(path)) { string line; string[] row; while ((line = readfile.ReadLine()) != null) { row = line.Split(','); parsedData.Add(new string[]{row[5], row[8]}); } }
Additionally, I would look for a better storage mechanism than a List of strings, perhaps a List of classes that would better describe the data.
It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.
- 編集済み TSoftware 2012年3月13日 12:39 Left off closing }
- 回答の候補に設定 TSoftware 2012年3月15日 14:17
- 回答としてマーク Bob ShenMicrosoft Contingent Staff, Moderator 2012年3月26日 2:42
-
2012年3月13日 15:41
hi,
I have a CSV and need to be able to brake down each row and column so that I can select indervidual cells within the CSV and set them as an object (i think). I would like to select the "Date" from the CSV which may be in "C3" and a value which may be in "C7" and nothing else.
Is this possible?
- 結合 Bob ShenMicrosoft Contingent Staff, Moderator 2012年3月15日 8:01 duplicate
-
2012年3月13日 15:55
You may want to take a look at this post:
Since it is almost identical to what you had posted there.
It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.
- 編集済み TSoftware 2012年3月13日 15:55
- 回答の候補に設定 servy42Microsoft Community Contributor 2012年3月13日 18:30

