You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the last character of a chunk is a double quote and the next character at the beginning of the next chunk is also a double quote, both characters will be ignored and the output will not output any characters.
I believe this has to do with using data.charAt(i+1) and not looking at the previous field if data.charAt(i+1) is null.
Example:
test,123,"quote""d field here"
If the stream chunk ends here:
test,123,"quote""d field here"
^
The output value
test,123,"quoted field here
when it should read
test,123,"quote"d field here
The text was updated successfully, but these errors were encountered:
ChrisAlvares
changed the title
Escaped Quotes at the end of a chunk are ignored.
Escaped Quotes at the end of a chunk are incorrectly ignored.
Jan 31, 2017
If the last character of a chunk is a double quote and the next character at the beginning of the next chunk is also a double quote, both characters will be ignored and the output will not output any characters.
I believe this has to do with using
data.charAt(i+1)
and not looking at the previous field if data.charAt(i+1) is null.Example:
If the stream chunk ends here:
The output value
when it should read
The text was updated successfully, but these errors were encountered: