I am trying to parse a CSV file with openCSV CSVReader, I have some records in the file like this...
"npg6851",,"Wonderful reminder\","This is perfect, I always wanted", ,"5","Nancy88","published"
As this answer indicated, that sequence \" is interpreted as a literal non-enclosing quote and the parser tries to read everything afterwards are one value (regarding any comma delimiters).
Is this considered valid according to CSV specifications?