You are looking for two different things so you need to have two alternations
my $reject_rx = qr{
total [ ] rows [ ] rejected: [ ] (\d+)
|
(\d+) [ ] rows [ ] rejected
}x;
if ( $line =~ /$reject_rx/ ) {
my $count = defined $1? $1 : $2;
print $count, "\n";
}
or using perl 5.10
use 5.010_00
my $reject_rx = qr{
(?| # either match will be in $1
total [ ] rows [ ] rejected: (\d+)
|
(\d+) [ ] rows [ ] rejected
)
}x;
if ( my ($count) = $line =~ /$reject_rx/ ) {
say $count;
}
the /x means that white space is ignored and comments can be put in. That is why I had to put
to match a literal
space.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.