Looks like you can do this quicker with map:

Perl Code:
#! /usr/bin/perl use strict ; use warnings ; $|++ ; use Benchmark qw( :all ) ; # Construct the test string. our @arr ; for ( 1..100_000 ) { push @arr, "foo, bar, zoot, blarg,\n" } cmpthese( 10_000_000, { 'Mine' => \&mine, 'Yours' => \&yours } ) ; sub mine { local @arr ; return map { split /,\s*|\n/ } @arr ; } sub yours { # Roughly. local @arr ; my @word_list ; while ( @arr ) { chomp; push @word_list, split ", "; } \@word_list; }
Results:
Benchmark: timing 10000000 iterations of Mine, Yours... Mine: 9 wallclock secs ( 8.82 usr + 0.02 sys = 8.84 CPU) @ 11 +31221.72/s (n=10000000) Yours: 25 wallclock secs (21.95 usr + 0.04 sys = 21.99 CPU) @ 45 +4752.16/s (n=10000000) Rate Yours Mine Yours 454752/s -- -60% Mine 1131222/s 149% --

_______________
DamnDirtyApe
Those who know that they are profound strive for clarity. Those who
would like to seem profound to the crowd strive for obscurity.
            --Friedrich Nietzsche

In reply to Re: a method to get words from a file into an array by DamnDirtyApe
in thread a method to get words from a file into an array by aufrank

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.