Help for this page

Select Code to Download


  1. or download this
    my $reject_rx = qr{
        total [ ] rows [ ] rejected: [ ] (\d+)
    ...
        my $count = defined $1? $1 : $2;
        print $count, "\n";
    }
    
  2. or download this
    use 5.010_00
    
    ...
    if ( my ($count) = $line =~ /$reject_rx/ ) {
        say $count;
    }