After some coersion, your response led me down the proper path. Here's my updated code snippet:
my $match = pack 'H*',
'53005f00560045005200530049004f004e005f004' .
'9004e0046004f0000000000bd04effe00000100';
open(FILE,$file) or die $!;
while (<FILE>) {
if (/$match(\S{2})(\S{2})(\S{2})(\S{2})/) {
print "Found match!";
print join('.',map {unpack 'H*',$_; } ($1,$2,$3,$4);
}
}
close(FILE);
I think my confusion rested in how perl would handle a binary file. Seems that the DWIM held true... I was making it harder than it was.
Thanks for your help!
Cheers,
Shendal
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.