in reply to Reading File and Seperating into columns

Pipes are perfectly ok as field separators in Perl. In fact, they are preferable to commas as they are less likely to be part of the field values than commas. In any case, you should be looking at Text::CSV and the associated documentation for your purposes.

  • Comment on Re: Reading File and Seperating into columns