Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^3: Splitting Multiple files into arrays.

by rjt (Curate)
on Jul 21, 2013 at 20:47 UTC ( [id://1045537]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Splitting Multiple files into arrays.
in thread Splitting Multiple files into arrays.

That data is tab-delimited, not space-delimited. I'd use Text::CSV for this.

use Text::CSV; my $csv = Text::CSV->new({ sep_char = "\t" }); my $array_ref = $csv->getline_all($fh); # OR... my @array = @{ $csv->getline_all($fh) };

You can easily adapt the loop constructs I suggested, above, or many of the other suggestions given by others, with this approach. Good luck.

Log In?
Username:
Password:

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

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

    No recent polls found