Help for this page

Select Code to Download


  1. or download this
        @files = glob $some_pattern;    # Call glob as an operator.
    
  2. or download this
    my @files =
        grep { /[A-Za-z]{2}_\w{2,5}/ }
            glob "??_??";