Help for this page

Select Code to Download


  1. or download this
    my $ignore =
        qr( 192\.168\.188\.3 |
    ...
            192\.168\.139\.50 |
            192\.168\.139\.198 |
            192\.168\.132\.101 )x ;
    
  2. or download this
    use Regex::PreSuf;
    my @ignore =
    ...
            192.168.139.198
            192.168.132.101 );
    my $ignorex = presuf( map { s|\.|\\.|g } @ignore );