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
As another example, readcsv(IOBuffer("\"hello, again\",\"goodbye\"")) gives ["hello, again" "goodbye"], but readcsv(IOBuffer(" \"hello, again\",\"goodbye\"")) gives " \"hello" " again\"" "goodbye". And readcsv(IOBuffer("\"hello, again\" ,\"goodbye\"")) gives an error (unexpected character ' ' after quoted field at row 1 column 1).
It seems like it would be better to treat all of these cases the same, and ignore whitespace before and after the delimiter.
The text was updated successfully, but these errors were encountered:
readcsv(IOBuffer(" 1, 2,3"))
gives[1.0 2.0 3.0]
, butreadcsv(IOBuffer(" 1 , 2,3"))
gives[" 1 ", 2.0, 3.0]
.As another example,
readcsv(IOBuffer("\"hello, again\",\"goodbye\""))
gives["hello, again" "goodbye"]
, butreadcsv(IOBuffer(" \"hello, again\",\"goodbye\""))
gives" \"hello" " again\"" "goodbye"
. Andreadcsv(IOBuffer("\"hello, again\" ,\"goodbye\""))
gives an error (unexpected character ' ' after quoted field at row 1 column 1
).It seems like it would be better to treat all of these cases the same, and ignore whitespace before and after the delimiter.
The text was updated successfully, but these errors were encountered: