Help for this page

Select Code to Download


  1. or download this
    $line =~ s/.*\]: //;
    
  2. or download this
    $line =~ s/.*?\]: //; # note the ? following .*
    
  3. or download this
    if  ($line =~ /\[(\d+\.\d+\.\d+\.\d+)\].*Relay access denied/) {
        my $ip = $1;
        print "$ip\n";
    }