in reply to How to find matching file names and build a @AOA using File::Find

Hai Chanakya,
You can find untested code below....
Might be you can use the logic...
use File::Find; my @AoA = (); find(\&wanted,"."); sub wanted { push @AoA, [$file, "Cfj$1"] if($File::Find::name =~ /^Afj(.+)/); }

--Prasanna.K
  • Comment on Re: How to find matching file names and build and @AOA using File::Find
  • Download Code