Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Regular expression to list all files of type in folder

by LanX (Saint)
on Dec 05, 2012 at 23:53 UTC ( [id://1007430]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
               while (defined($_ = <STDIN>)) { print; }
               while ($_ = <STDIN>) { print; }
    ...
               print while defined($_ = <STDIN>);
               print while ($_ = <STDIN>);
               print while <STDIN>;
    
  2. or download this
               while (my $line = <STDIN>) { print $line }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-03-28 17:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found