in reply to Re: Problem when - use strict and -w
in thread Problem when - use strict and -w

Like your proposed code of reading the data. The empty last line problem is now also not an issue anymore. Don't think I can have Text::CSV_XS handle the output as I need to work on the output such as: (psuedocode)
multiply row->[2] by 4 if row->[0] != 123
Though definitely something I'll consider using in the future.
Thanks

Replies are listed 'Best First'.
Re^3: Problem when - use strict and -w
by ikegami (Patriarch) on Jul 15, 2009 at 05:08 UTC
    What part of that do you think you can't do with $csv->print (but can somehow do with STDOUT->print)
      ah well, I'm kind of puzzled in the setup $csv->print where to put the part of the code that's going to work on the columns. In my (new) setup I have:
      while ( my $row = $csv_in->getline($fh_in) ) { # doing stuff with the columns print "Olah:","\t", $number++, $row->[2]... }
      How should I structure this using $csv->print. Probably just a small hint/example will open my eyes (again).
      Gert
        Nothing changes.
        while ( my $row = $csv_in->getline($fh_in) ) { # doing stuff with the columns #print(...); $csv->print( ... ); }