RE: Problems with TEXT::CSV_XS

2003-04-03 Thread Scott R. Godin
Bk Good wrote: > Can Text::CSV handle other types of delimited files besides comma? You could also look into AnyData.pm (and DBD::AnyData if you're more familiar with DBI) which has some interesting ways of parsing various files and treating them like databases ;o) -- To unsubscribe, e-mail

RE: Problems with TEXT::CSV_XS

2003-04-02 Thread BK GOOD
Can Text::CSV handle other types of delimited files besides comma? -Original Message- From: George Schlossnagle [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 10:09 AM To: Dan Muey Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Problems with TEXT::CSV_XS Text::CSV (no

Re: Problems with TEXT::CSV_XS

2003-04-02 Thread Jenda Krynicky
From: "BK GOOD" <[EMAIL PROTECTED]> > The TEXT::CSV_XS module has problems parsing delimited files with > funny characters, binary data or missing quotes. It will blank out > the records. Does anyone know of another module for parsing delimited > files that can handle this type o

Re: Problems with TEXT::CSV_XS

2003-04-02 Thread George Schlossnagle
Text::CSV (no XS) has done an all-too-good job of parsing binary data for me in the past. On Wednesday, April 2, 2003, at 11:02 AM, Dan Muey wrote: The TEXT::CSV_XS module has problems parsing delimited files with funny characters, binary data or missing quotes. It will blank out the records.

RE: Problems with TEXT::CSV_XS

2003-04-02 Thread Dan Muey
> The TEXT::CSV_XS module has problems parsing delimited files > with funny characters, binary data or missing quotes. It > will blank out the records. Does anyone know of another > module for parsing delimited files that can handle this type of data? I think DBI handles CSV. I'd say your bes