Help for this page

Select Code to Download


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