Replies: 2 comments 1 reply
-
I'm not aware of any modern operating system that will write a \r for a newline. If someone goes out of their way to write one, then they can go out of their way to fix it before trying to use my library. A workaround you can implement is to create a custom TextReader implementation that is a wrapper around another TextReader. Your wrapper will replace all \r with \n before returning back to the caller. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I was pleasantly surprised to see that this is now supported: #198 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have discovered some client CSV files that use \r for the record delimiter. Why was support for this delimiter excluded in favor of only \n and \r\n?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions