Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Grabbing file prefixes with Reg Exp

by MrNobo1024 (Hermit)
on May 13, 2001 at 20:19 UTC ( [id://80048]=note: print w/replies, xml ) Need Help??


in reply to Grabbing file prefixes with Reg Exp

grep returns the whole filenames, not just a parenthesized group. I think what you want is my @audiofiles = map { /([^\.]+)\.ram/i ? $1 : () } readdir DH;

Replies are listed 'Best First'.
Re: Re: Grabbing file prefixes with Reg Exp
by nysus (Parson) on May 13, 2001 at 20:24 UTC
    You so smart! That did the trick. Guess I gotta learn the "map" function now...thanks!

    $PM = "Perl Monk's";
    $MCF = "Most Clueless Friar";
    $nysus = $PM . $MCF;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (9)
As of 2024-03-19 08:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found