S
Shashank Khanvilkar
Hi,
I want to write a simple program that can search for a 13 _BIT_ pattern
in a file opened in a binary mode. Is there a simple way of doing this?
for example, can someone complete the below program code.
open(IN,"$inFile");
binmode(IN);
while (<IN>) //while there is still data in the file
{
Read the IN file for the 13 bit pattern
if found{
..do something
}
}
Thanks
Shashank
I want to write a simple program that can search for a 13 _BIT_ pattern
in a file opened in a binary mode. Is there a simple way of doing this?
for example, can someone complete the below program code.
open(IN,"$inFile");
binmode(IN);
while (<IN>) //while there is still data in the file
{
Read the IN file for the 13 bit pattern
if found{
..do something
}
}
Thanks
Shashank