in reply to Re^8: Pre-process csv files before using
in thread Pre-process csv files before using
I would do -
open (IN, 'origdata.csv'); # Open the file for read open (OUT,'>','copy.csv'); # Open the file for write. Will overwrite +if exists while(<IN>) { # read contents of input file # <IN>, typucally used inside a while will populate variable $_ # more proecessing print OUT ($_); # Write out to new file }
I think you should start reading more about how to work with files and other perl idioms.
I would recommend that you start with "Learning perl book". Also there are lot of stuff in Categorized Questions and Answers section!
-SK
|
|---|