in reply to RegEx on Binary data
$packed_record =~ /^[\x00-\xff]{8,15}\xaa\xbb\xcc/; [download]
Dave.
The library approach doesn't actually work for me. I should have prefaced that I am not using raw Perl, but compiled PCRE in C language, so I needed the raw RegEx.
I'll play with that expression...