- or download this
$error=~/$_/
- or download this
my @regex=('\bcannot verify',
'\bcorrupt file',
'\bskipped',
);
- or download this
my @regex=(
qr/\bcannot verify/,
qr/\bcorrupt file/,
qr/\bskipped/,
);
- or download this
my @regex = map qr/$_/, (
'\bcannot verify',
'\bcorrupt file',
'\bskipped',
);