Replies: 1 comment 2 replies
-
Ah, as you noticed the CSV reader doesn't currently support |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I kinda got annoyed by this error so I decided to figure out what happened with it, because the files can be read by Libreoffice, I saw the code checks for '\r' at here
glaze/include/glaze/csv/read.hpp
Line 128 in feabaaf
so I wondered if it was because of that so I made a minimum example with the following code (data is from issue #666)
and gave the result:
After removing
\r
from the byte array it can parse the content properly into the struct without any weird behavior. So I'm curious about if checking\r
intended or not, if it is, what are the reasons behind this 👀My code in the project:

Beta Was this translation helpful? Give feedback.
All reactions