I am having trouble using unpack instead of split. I know that unpack is quite a bit faster than split and therefore would rather use unpack. The particulars:
open(FILE,"file") or die "No such file";
open(OUT,">outfile";
while(<FILE>) {
$form = unpack("x145 A1", $_);
next unless ($form eq...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.