chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] csv egg


From: Ivan Raikov
Subject: Re: [Chicken-users] csv egg
Date: Mon, 29 Nov 2010 16:37:03 +0900
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux)

Hello, Daishi,

   csv was not detecting special characters due to recent changes in the
Chicken regex API. I have updated csv so that escaping of cell content
works properly. You should now be able to do:

csi> (use csv)
csi> (define-values (format-csv-cell format-csv-record format-csv) (make-format 
#\,))
csi> (format-csv-record (list->csv-record (list "a,b,c" "d" "e")))
"\"a,b,c\",d,e"


Daishi Kato <address@hidden> writes:

> Hi,
>
> I'm trying to use the csv egg.
> http://wiki.call-cc.org/eggref/4/csv
>
> I was not sure how I can format data like
> "a,b,c",d,e
> meaning a cell that contains comma, newline, and so on.
>
> Isn't it supported?
>
> Best,
> Daishi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]