jesuashok has asked for the wisdom of the Perl Monks concerning the following question:
Above is the standard hash that we are using in our projects. There is a base module written to process this standard hash. Functionality is, If it sees the key INPUT_FILE_DESCRIPTION then base module does process only the files which start with "Remote". Now I want to process all the files which does not start with "Remote".%rules = ( INPUT_FILE_DESCRIPTION => "^Remote.*" );
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Regular expression question strikes again
by Corion (Patriarch) on Sep 05, 2007 at 07:21 UTC | |
Re: Regular expression question strikes again
by sgt (Deacon) on Sep 05, 2007 at 09:47 UTC | |
Re: Regular expression question strikes again
by oha (Friar) on Sep 05, 2007 at 09:25 UTC | |
Re: Regular expression question strikes again
by Anonymous Monk on Sep 05, 2007 at 10:03 UTC | |
by blazar (Canon) on Sep 05, 2007 at 16:20 UTC | |
by sgt (Deacon) on Sep 06, 2007 at 10:42 UTC |