Help for this page

Select Code to Download


  1. or download this
    my $dqsel = bin2dec(join '', @exclude);
    
  2. or download this
    sub bin2dec {
       my ($bin) = @_;
       return unpack("N", pack("B32", substr("0" x 32 . $bin, -32)));
    }