Help for this page

Select Code to Download


  1. or download this
    $key =~ /^LOGGED IN (\w+) GET/;
    $key = $1;
    
  2. or download this
    $key =~ s/LOGGED IN //;
    $key =~ s/ GET //;
    $key =~ s/ POST //;
    $key = $1;
    
  3. or download this
    foreach my $key (keys %seen) {
        my $col1_vals = $seen{$key}->{col1_vals};
        print "@$col1_vals\n";
    }