Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Removing certain lines from array

by arkturuz (Curate)
on Jul 30, 2013 at 09:17 UTC ( [id://1046981]=note: print w/replies, xml ) Need Help??


in reply to Removing certain lines from array

How about this approach:
my @array = ( "hello 1234 5698 7458", "hi 1457 7459 6214", "good_day 1458", "hi 1258 3658", "good_morning 4758", "hi 1453", ); # count all occurences my %freqs; for my $elem (@array) { my ($word) = $elem =~ /^(\w+)/; $freqs{$word}++; } # remove all multifrequent words my @new_array; for my $elem (@array) { my ($word) = $elem =~ /^(\w+)/; unless ($freqs{$word} > 1) { push @new_array, $elem; } }
edit: corrected - element needs to be removed

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 22:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found