Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: grepping arrays

by revdiablo (Prior)
on Jun 21, 2003 at 22:59 UTC ( [id://267878]=note: print w/replies, xml ) Need Help??


in reply to grepping arrays

Your question has been answered directly by the other fine monks, but I thought it would also be useful to point out that this is a common case where a hash is used instead of an array. Hashes make checks for existence much faster than iterating through your array each time (which is what grep does).

Here's an example of how you could make your array into a hash:

my %ignore; @ignore{ @ignore } = (); # note this is a hash slice. the first @ignor +e # is referring to the hash

And here's how you can check the hash for existence:

if (exists $ignore{$username} or exists $ignore{$askname}) {

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-16 04:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found