in reply to Re^3: csv parsing with multiple missing values/multiple commas
in thread csv parsing with multiple missing values/multiple commas

Wow, this works great.

You switched to Text::CSV_XS instead of Parse::CSV. Were there that many problems with my implementation or do you think there is a bug in Parse::CSV?

Again many thanks

  • Comment on Re^4: csv parsing with multiple missing values/multiple commas

Replies are listed 'Best First'.
Re^5: csv parsing with multiple missing values/multiple commas
by poj (Abbot) on Aug 02, 2014 at 19:33 UTC
    I couldn't get the callbacks to work with Parse::CSV. I think it only works with getline not fetch.
    poj

      Can I thread/fork this code safely?

        You can't fork/thread any code safely without putting some thought into it. Multiple processes handling the same data always requires some synchronization. What exactly do you want to achieve?