Help for this page

Select Code to Download


  1. or download this
    IP   URL   Desc
    IP   URL   Desc
    IP   URL   Desc
    IP   URL   Desc
    
  2. or download this
    my @array = split /\s+/, $line, 3;
    
  3. or download this
    my ($ip, $url, $desc) = split /\s+/, $line, 3;
    
  4. or download this
    $ip =~ s/\[\.\]/./g ;
    $url =~ s/\[\.\]/./g ;
    
  5. or download this
    push @ips, $ip;
    push @urls, $url;
    push @list, $stuff_you_processed;