http://www.perlmonks.org?node_id=999251


in reply to Re^2: Parsing multiple excel files in perl
in thread Parsing multiple excel files in perl

Then you have problem with algorithm parsing files? Because opening multiple files is simple, you just use different file handles:
open FH, "file1" or die $!; open FH2, "file2" or die $!; $readlinefromfile1 = <FH>; $readlinefromfile2 = <FH2>; $readfromfile1again = <FH; close FH2; close FH;

Replies are listed 'Best First'.
Re^4: Parsing multiple excel files in perl
by reaper9187 (Scribe) on Oct 16, 2012 at 10:45 UTC
    Thanks again .. I figured it out .. It's working fine now.. Thank you everyone for taking the time out to chip in .