Comment detail
RFC 4180対応版 CSVレコードの分解 (Nested Flatten)This comment is reply for 1515 rubikitch: (RFC 4180対応版 CSVレコードの分解). Go to thread root.
おっと、カラムの表示は1からスタートでしたか。そしたらcutは使えないですね。
1 2 3 4 5 6 7 | (use text.csv)
(use gauche.sequence)
(define (splitCSV line)
(for-each-with-index
(lambda (i e) (print (+ i 1)" => "e))
(call-with-input-string line (make-csv-reader #\,))))
|
どうも、勉強になります。





shiro
#1520()
[
Scheme
]
Rating0/2=0.00
Rating0/2=0.00-0+