- or download this
foreach my $file (@filelist) {
push(@curr, $1) if $file =~ /^(FRAUD-REPORT\d+\.CSV)$/i;
}
- or download this
foreach my $file (@filelist) {
push(@curr, $file) if $file =~ /^FRAUD-REPORT\d+\.CSV$/i;
}
- or download this
my @curr = grep /^FRAUD-REPORT\d+\.CSV$/, @filelist;