Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: How to make an array from an array?

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


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
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found