Help for this page

Select Code to Download


  1. or download this
    foreach $file (@array) {
        if ($file =~ /^KL\d{1|2}_/) {
    ...
            print "$file\n";
        }
    }
    
  2. or download this
    foreach $file (@array) {
        if ($file =~ /^KL\d+_/) {
    ...
            print "$file\n";
        }
    }