We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This may work:
@@ -360,12 +320,14 @@ class CSV if @liberal_parsing @unquoted_value = Regexp.new("[^".encode(@encoding) + escaped_column_separator + - "\r\n]+".encode(@encoding)) + escaped_row_separator + + "]+".encode(@encoding)) else @unquoted_value = Regexp.new("[^".encode(@encoding) + escaped_quote_character + escaped_column_separator + - "\r\n]+".encode(@encoding)) + escaped_row_separator + + "]+".encode(@encoding)) end @cr_or_lf = Regexp.new("[\r\n]".encode(@encoding)) @not_line_end = Regexp.new("[^\r\n]+".encode(@encoding))
The text was updated successfully, but these errors were encountered:
This may be difficult because row separator may be two or more characters such as \r\n.
\r\n
Sorry, something went wrong.
No branches or pull requests
This may work:
The text was updated successfully, but these errors were encountered: