in reply to Regex Question

You can read the file with Config::INI::Simple, and transform the file names with glob.

Replies are listed 'Best First'.
Re^2: Regex Question
by LouM (Initiate) on Mar 10, 2008 at 16:15 UTC
    Thanks moritz. I have the Config::INI::Simple part covered but woiuld appreciate more help on the glob piece.

    I looked at some examples but still not sure how to code it.
      It's not that hard:
      my @matched_files = glob $pattern;

      glob expands shell "patterns" like a star * to all files, '..' to the parent directory, ~ to the home directory and so on.