-
I have an error with dialyzer, by using this dummy parse_stream, I'm obtaining no local return
```elixir
defmodule MyMod
@spec base_stream(binary) :: Enumerable.t()
def base_stream(srcfile…
-
some refs:
- http://tools.ietf.org/html/rfc4180
- https://github.com/parsecsv/csv-spec
I just found them before few weeks, while playing with LimonJS.
I think it would be better to follow "most comm…
-
This was reported ages ago (at least Dec 1st, if not earlier)
The CSV files that the LCB accepts are not compliant with RFC4180
-- so this means, no quoted fields and no embedded commas in field va…
-
I'm comparing your `_csv` to other CSV file readers.
You skip over initial spaces in a field (in `beginning-of-field`). The RFC https://www.ietf.org/rfc/rfc4180.txt seems to say that one should inc…
-
Is it just me or is the `isql` CSV encoding weird?
```
SQL> SET CSV=ON;
SQL> sparql select ?s ("hallo you; % jörn" as ?foo) ?p where {?s ?p ?o} limit 1;
s;foo;p
http://www.openlinksw.com/virtrdf-dat…
-
Excel has numerous quirks with regards to CSV generation and reading. For example, if a CSV file starts with "ID" excel treats it as SYLK: https://support.microsoft.com/en-us/kb/323626
The prescri…
-
E.g. the row:
```
foo,"bar,baz",qux
```
will be parsed as `["foo", "\"bar", "baz\"", "qux"]`
-
see https://www.ietf.org/rfc/rfc4180.txt
-
https://tools.ietf.org/html/rfc4180
For example:
- End lines with CRLF instead of OS specific lineSeparator
- Use double quotes for text variables?
Consider also how these might impact the tex…
-
Currently, qsv creates, consumes and validates CSV files hewing closely to the [RFC4180 specification](https://www.ietf.org/rfc/rfc4180.txt) as interpreted by the csv crate.
However, it doesn't all…