last field quotation with closing new line makes parser explode
(dsv-string->scm "test,hello,\"blah\"\r\n" #:format 'rfc4180)
last field quotation with now closing new line works fine
(dsv-string->scm "test,hello,\"blah\"" #:format 'rfc4180)
last field in any non-final line with quotation causes parser errors
(dsv-string->scm "test,hello,\"blah\"\r\nincorrect,field,parsing" #:format 'rfc4180)
I imagine it is an issue to do with end of line parsing…
To reproduce:
last field quotation with closing new line makes parser explode
(dsv-string->scm "test,hello,\"blah\"\r\n" #:format 'rfc4180)
last field quotation with now closing new line works fine
(dsv-string->scm "test,hello,\"blah\"" #:format 'rfc4180)
last field in any non-final line with quotation causes parser errors
(dsv-string->scm "test,hello,\"blah\"\r\nincorrect,field,parsing" #:format 'rfc4180)
I imagine it is an issue to do with end of line parsing…
Best wishes,
Alex