Beefy Boxes and Bandwidth Generously Provided by pair Networks Bob
Perl: the Markov chain saw
 
PerlMonks  

Re: How to make an array from an array?

by barrd (Canon)
on Dec 06, 2003 at 09:47 UTC ( [id://312769]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to How to make an array from an array?

Straight from Perl Cookbook (well almost :-)
my @all_names = qw/john andy bill andy john julia bill/; my %seen = (); my @names = grep { ! $seen{$_} ++ } @all_names; print join(' ', @names);
This prints john andy bill julia, I'm sure you'll get other variations.

Update 1: Fixed typos in code D'oh.

Update 2: As TomDLux rightly pointed out, you may wish to sort the names alphabetically, if so just change line 3 to this:

my @names = sort grep { ! $seen{$_} ++ } @all_names;
Returning: andy bill john julia (which is what I meant to do originally but ... err... didn't)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://312769]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.