Setting Row Headers In A CSV
-
martes, 13 de marzo de 2012 10:54
- Editado matta0990 martes, 13 de marzo de 2012 15:46 error
Todas las respuestas
-
martes, 13 de marzo de 2012 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.
- Editado TSoftware martes, 13 de marzo de 2012 12:39 Left off closing }
- Propuesto como respuesta TSoftware jueves, 15 de marzo de 2012 14:17
- Marcado como respuesta Bob ShenMicrosoft Contingent Staff, Moderator lunes, 26 de marzo de 2012 2:42
-
martes, 13 de marzo de 2012 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?
- Combinado Bob ShenMicrosoft Contingent Staff, Moderator jueves, 15 de marzo de 2012 8:01 duplicate
-
martes, 13 de marzo de 2012 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.
- Editado TSoftware martes, 13 de marzo de 2012 15:55
- Propuesto como respuesta servy42Microsoft Community Contributor martes, 13 de marzo de 2012 18:30

