Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Hash/file --> doesn't seem to work

by imrags (Monk)
doesn't seem to work NODE.owner = 700029 N.title = monktitlebar sitedoclet N.owner = 17342 -->
on Jun 10, 2009 at 09:12 UTC ( [id://770258]=note: print w/replies, xml ) Need Help??


in reply to Hash/file --> doesn't seem to work

Well, in my case, the file is big and the hash is relatively small...
hence i chose it this way. Is there a better way to do it?
I'm sure there must be, but just that i don't know them :(
I'll try to use seek and get to the beginning of the file
and then post the complete code.
Update:
This did it:
seek(FILE,SEEK_SET,0);
Raghu

Replies are listed 'Best First'.
Re^2: Hash/file --> doesn't seem to work
by Crian (Curate) on Jun 10, 2009 at 09:37 UTC

    But this way vou have to read the big file often. As supposed above it would be better, to switch the while loops.

    untested:

    while(<FILE>) { chomp; my ($objid,$other) = split(/\s+/,$_); while(my ($key,$value)= each (%hash_table)) { if($objid =~ /$key/i) { print "$key is present in $objid\n"; } else { next; } } }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-25 22:58 GMT
Sections?
doesn't seem to work NODE.owner = 700029 N.title = Sections sitedoclet N.owner = 17342 -->
Information?
doesn't seem to work NODE.owner = 700029 N.title = Information sitedoclet N.owner = 17342 -->
Find Nodes?
doesn't seem to work NODE.owner = 700029 N.title = Find Nodes sitedoclet N.owner = 17342 -->
Leftovers?
    doesn't seem to work NODE.owner = 700029 N.title = Leftovers sitedoclet N.owner = 17342 -->
    Voting Booth?

    No recent polls found