Help for this page

Select Code to Download


  1. or download this
    undef $/;
    $_ = <>;
    s/(\x31\x33\x39\x37[^\x00]*\x00)/"\x00" x length $1/ge;
    print;
    
  2. or download this
    $/ = \4096;
    my $flag = 0;
    ...
        s/(1379[^\x00]*(\z|\x00))/"\x00" x length $1/ge;
        $flag =  length $2 ? 0 : 1; # this could be readily golfed, I real
    +ize
    }