Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: Parsing multiple excel files in perl

by grizzley (Chaplain)
on Oct 16, 2012 at 08:10 UTC ( [id://999251]=note: print w/replies, xml ) Need Help??


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 .

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://999251]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-03-29 13:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found