Guile csv reader
./configure && make sudo make install
(use-modules (csv csv))
(define my-csv-reader (make-csv-reader #:\,))
(call-with-input-file "file.csv" my-csv-reader)
(call-with-input-file "file.csv" csv->xml)
and result could be:
<record-0>
<name>aaa</name>
<age>11</age>
<email>[email protected]</email>
</record-0>
<record-1>
<name>bbb</name>
<age>12</age>
<email>[email protected]</email>
</record-1>
(call-with-output-file "file.csv"
(lambda (port)
(sxml->csv
'((name age email) ("aaa" "11" "[email protected]") ("bbb" "12" "[email protected]"))
port)))
and file.csv would be:
name,age,email
aaa,11,[email protected]
bbb,12,[email protected]
Enjoy!