-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Description
Aren't lines starting with # supposed to be skipped in a csv reader?
I'm I doing something wrong? Does clojure-csv know how to skip comments?
Is this the expected results? Maybe yes?
user> (require '[clojure-csv.core :as csv])
nil
user> (csv/parse-csv "#hello
a,b,c
1,2,3
10,20,30")
(["#hello"] ["a" "b" "c"] ["1" "2" "3"] ["10" "20" "30"])
user>
Metadata
Metadata
Assignees
Labels
No labels