Help for this page

Select Code to Download


  1. or download this
    $log_line =~ s/"GET.*"h/ /;
    
  2. or download this
    
    foreach my $log_line(@log_data) {
      my ($date_string,$referrer) = ($log_line =~ /\[([^\]]+)\] "[^"]+"[^"
    +]+"([^"]+)"/);
      print "$date_string,$referrer<P>\n";
    }