Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Searching in binary files

by crenz (Priest)
on Dec 14, 2005 at 18:25 UTC ( [id://516720]=note: print w/replies, xml ) Need Help??


in reply to Re: Searching in binary files
in thread Searching in binary files

Danke nach Frankfurt!

There are a few bugs in your code, though. I changed the if to a while loop and fixed a few other problems:

while ($str =~ /searchword/g) { my $loc = tell($fh) - length($str) + pos($str); print "Found a match starting after $loc.\n"; }

Update: That doesn't quite work either... it finds too many occurrences...

Replies are listed 'Best First'.
Re^3: Searching in binary files
by Anonymous Monk on Mar 21, 2013 at 20:19 UTC
    while ($str =~ /$pattern/g) { my $loc = tell($fh) - length($str) + pos($str) - length($patte +rn); print "Found a match starting after $loc.\n"; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2025-07-11 14:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.