Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: get list of files matching part of file name

by doubledecker (Scribe)
on Jul 11, 2012 at 13:19 UTC ( [id://981113]=note: print w/replies, xml ) Need Help??


in reply to Re: get list of files matching part of file name
in thread get list of files matching part of file name

I used glob to list all the files in my current directory and using those list of files i'm trying to find out matching files in other directory

  • Comment on Re^2: get list of files matching part of file name

Replies are listed 'Best First'.
Re^3: get list of files matching part of file name
by Athanasius (Archbishop) on Jul 11, 2012 at 13:29 UTC

    A couple of points:

    (1) In the foreach loop, $file contains a filename together with its path and extension. To extract just the name part, you need something like:

    (my $basename = fileparse($file)) =~ s/ \. .* $ //x;

    which uses the fileparse function from File::Basename to extract the filename, then removes the extension (if any).

    (2) print Dumper(@matches); will print each match on a separate line. You would probably be better off with something like this:

    printf "'%s' matches: %s\n", $basename, join(', ', @matches);

    HTH,

    Athanasius <°(((><contra mundum

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://981113]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-19 23:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found