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

Re: Problem stripping directory listing

by integral (Hermit)
on Feb 15, 2003 at 08:43 UTC ( [id://235518]=note: print w/replies, xml ) Need Help??


in reply to Problem stripping directory listing

Couple of points from me: You can replace the use of `find` with the File::Find module which uses perl, although this would require restructuring your code, because of the callback style interface of that module.

The second point is that your use of split could be optimised. This is one situation where a regex with capturing parenthesis could be used instead (see perlop for more about the return value of m// in list context).

my ($reqd) = m{users/(.+?)/};

--
integral, resident of freenode's #perl

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 21:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found