The sample you're looking at is not, technically speaking, a valid CSV format file. Basically, whomever provided the file used the text qualifier symbol - the double quote " - in a non-standard way. The traditional way to use it is this:
123,"Sue said, ""Hi, this is a test!""",2012-08-15
This statement should parse as this:
Assert.AreEqual(line.Length, 3);
Assert.AreEqual(line[0], @"123");
Assert.AreEqual(line[1], @"Sue said, ""Hi, this is a test!""");
Assert.AreEqual(line[2], @"2012-08-15");
From the sample CSV provided in your question, according to the standards I've seen, the correct processing should basically treat the quote marks as regular characters within the string rather than text qualifiers. Here's how I interpret your line - please do let me know if I'm wrong, though!
Assert.AreEqual(line.Length, 6);
Assert.AreEqual(line[0], @"30: ""NY""");
Assert.AreEqual(line[1], @" 41: ""JOHN S.""");
Assert.AreEqual(line[2], @" 36: ""HAMPTON""");
Assert.AreEqual(line[3], @" 42: ""123 Road Street");
Assert.AreEqual(line[4], @" NY""");
Assert.AreEqual(line[5], @" 68: ""Y""");
I would imagine FileHelper is breaking because it can't determine if the text is either text qualified or properly delimited. You'd definitely be best off using custom code to handle this one; the solution provided by Cuong Le seems good for your solution.
For reference, my C# CSV library is here: https://code.google.com/p/csharp-csv-reader/
EDIT: For fun's sake, I wondered if it would be possible to decode this using a regular expression. Your data is consistently formatted, even if it's not strictly CSV, so perhaps this is something else for your toolbox:
String mystring = @"30: ""NY"", 41: ""JOHN S."", 36: ""HAMPTON"", 42: ""123 Road Street, NY"", 68: ""Y""
20: ""STEVE"", 12: ""JONES"", 96: ""1600 PENNSYLVANIA AVE, NW""
30: ""NY"", 41: ""JOHN S."", 36: ""HAMPTON"", 42: ""123 Road Street, NY"", 68: ""Y"", 40: 12345";
Regex r = new Regex(@"(?<id>\d*): (""(?<field>[^""]*)""|(?<field>[\d]*))");
MatchCollection mc = r.Matches(mystring);
foreach (Match m in mc) {
Console.WriteLine("{0}: {1}", m.Groups["id"], m.Groups["field"]);
}
Basically, the regex works by looking for two decimal digits, followed by a colon - space - doublequote. It then finds all text until it reaches another doublequote. From my testing, this also produces correct matches for both of the test lines you've described in your question.
If my regex isn't quite correct, there's a nifty online regex tester available here: http://gskinner.com/RegExr/ - Try copying and pasting your data into the search area, and then use this regex string as a starting point:
(?<id>\d*): ("(?<field>[^"]*)"|(?<field>[\d]*))
EDIT2: I fixed the Regex to also take into account the "40: 12345" value you cited in your comment below. It now detects all fields correctly on all of the examples.
EDIT3: From another request, this regex now supports unlimited length numbers before the colon. Here's a quick explanation of how the regex works:
(?<id>\d*) - This first chunk is called a capturing group - a capturing group is surrounded by parenthesis. It attempts to capture a repeating string (*) of decimal digits (\d) and give it the name "id" (?<id>).
: - Matches the colon space in between records.
"(?<field>[^"]*)" - finds a beginning quotation mark, then a large number of characters other than a quotation mark ([^"]), ending with another quotation mark. Saves the result in "field".
(?<field>[\d]*) - Finds any number of decimal digits and saves the result in "field". Note that some regex engines don't support having two capture groups with the same name; you may have to call one "field1" and the other "field2".