in reply to Perl script help to convert .txt file to .csv

How many files do you have? It might be easier to just combine them into one file, open with a text editor capable of doing regex matching / substitution, and do the two or three operations necessary.
  • Comment on Re: Perl script help to convert .txt file to .csv

Replies are listed 'Best First'.
Re^2: Perl script help to convert .txt file to .csv
by Seabass (Novice) on Dec 20, 2011 at 17:17 UTC

    Not many files, but each file contains thousands of entries (file size >35,936 KB). In fact, just opening the file in my text editor and it starts to slow down. Thanks for the idea though.