Help for this page

Select Code to Download


  1. or download this
    my @range= unpack "N*", pack "C*", split /[. ]+/, "@ARGV";
    
  2. or download this
    $range[0]..$range[1]
    
  3. or download this
    Range iterator outside integer range at ...
    
  4. or download this
    for(  $_= $range[0];  $_ <= $range[1];  $_++  )
    
  5. or download this
    sub octets2num {
        my $val= 0;
    ...
        }
        return ! @bytes ? "0" : join ".", @bytes
    }