Help for this page

Select Code to Download


  1. or download this
    ...
    next if grep { /$file/ } @array_code; # not working
    
  2. or download this
    ...
    next if grep { warn "Checking if $_ =~ /$file/"; /$file/ } @array_code
    +;
    ...