clojure-csv
clojure-csv copied to clipboard
A library for reading and writing CSV files from Clojure
The project.clj is missing the `:license` key which makes its way into the published pom on clojars and can be used to programmatically extract license info.
Given this input data row: ``` Aldershot;Leo Docherty;12;Hampshire;76205;26955;15477;3637;1796;1090;0;0;0 ``` (from [here](https://www.electoralcalculus.co.uk/electdata_2017.txt)) I get this output: ``` ["Aldershot" "Leo Docherty" "12" "Hampshire" "76205" "26955" "15477" "3637" "1796" "1090" "0" "0" "0"]...
Hi, this includes: 1. Optional recognition of numbers in data; 2. Optional recognition of dates/times in data; 3. Optional recognition of first row as field names; 4. Option to supply...
Issue #36 is closed, saying that commas inside quotes are ignored, but in the below example that is not always the case. Only difference between the three lines below is...
Would be nice to have an example in the README.md so I can get started quickly.
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1
The changes here allow you to have an end-of-line string that _begins_ with the same character that is used as the delimiter. An example that I've come across in the...
Hi David, I've recently faced issues with Google Docs exported sheet, since (of course) it does not escape quotes. The issue happens if field starts with quoted value, but then...
The instruction for leiningen still used version 2.0.1 instead of 2.0.2.