Help for this page

Select Code to Download


  1. or download this
        
        $ipadrs = substr($record,0,17)) =~ s/ //g;
        @iparray = split(/\./,$ipadrs);
    
  2. or download this
    @iparray = split(/\./,(substr($record,0,17) =~ s/ //g));
    
  3. or download this
    @iparray = @{split(/\./,(substr($record,0,17) =~ s/ //g))};