Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^5: splitting arrays

by RazorbladeBidet (Friar)
on Apr 15, 2005 at 14:03 UTC ( [id://448165]=note: print w/replies, xml ) Need Help??


in reply to Re^4: splitting arrays
in thread splitting arrays

if newlines are considered part of the data:
(untested)
{ local $/="\t"; my $i = 0; my @arr = (); while ( <FILE> ) { push @{$arr[$i++%50]}, $_; } }
This should (note that the code is untested) give you an array of array references that each contain 50 items (except possibly the last array ref).

Does that do what you wanted?
--------------
"But what of all those sweet words you spoke in private?"
"Oh that's just what we call pillow talk, baby, that's all."

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-03-28 08:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found