I'm reading a csv file using the Lumenworks csv reader. Below is an example record
"001-0000265-003"|"Some detail"|"detal1"|"detail2"|"detal3"|"detail4"|"detail5"|"detail6"
I've created a class with below constructor to read this file
using (var input = new CsvReader(stream, true, '|'))
{
//logic to create an xml here
}
This works fine when there is no double quotes inside details. But when the scinarios like this
"001-0000265-003"|"Some " detail"|"detal1"|"detail2"|"detal3"|"detail4"|"detail5"|"detail6"
the reader throws an exception
An unhandled exception of type 'LumenWorks.Framework.IO.Csv.MalformedCsvException' occurred in LumenWorks.Framework.IO.dll
So then I used the CsvReader constructor which takes 7 arguments,
CsvReader(stream, true, '|', '"', '"', '#', LumenWorks.Framework.IO.Csv.ValueTrimmingOptions.All))
But still I'm getting the same error. Please provide any suggestions.
I'm reading some complex filed as follows,
"001-0000265-003"|"ABC 33"X23" CDE 32'X33" AAA, BB'C"|"detal1"|"detail2"|"detal3"|"detail4"|"detail5"|"detail6"
I've tested it with your sample data and it's pretty difficult to fix this malformed line(f.e. from the
Catch
-block). So i would not use a quoting-character, but instead just use the pipe-delimiter and remove the"
later viacsv[i].Trim('"')
.Here's a method that parses the file and returns all lines' fields:
Test and output with a file that contains your sample data: