Good afternoon, i've been trying to import a field from a txt/csv file and it keeps causing an error in my import. I know why i just can't seem to figure out how to resolve it. I have a string filed listed below that is causing an error when it runs. The issue is that the accident description is quoted correctly but also contains another set of double quotes. Is there any way for me to strip out quotes from the quoted string ?
"123456","I heard a "pop" in my shoulder","01/01/1900"
This is the FileHelpers class
Namespace xxx
<DelimitedRecord(","), IgnoreFirst(1)>
Public Class yyy
<FieldQuoted()> _
Public IDAs String
<FieldQuoted()> _
Public AccidentDescr As String
<FieldQuoted()> <FieldConverter(ConverterKind.Date, "yyyy-MM-dd")> _
Public DOI As DateTime
any help would be great