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

Re: A bizarre way to get a list of filenames

by Your Mother (Archbishop)
on Aug 05, 2019 at 15:11 UTC ( [id://11103948]=note: print w/replies, xml ) Need Help??


in reply to A bizarre way to get a list of filenames

Sidenote based on this–

("how do I add text files to this list?"... answer: make 2 lists & join them.)

join is a proper operator as well as a concept and it’s definitely not what you want here. push @files, @xml_files, @text_files; or my @files = ( @xml_files, @text_files ); or some variety along those lines is more what you’ll want. You might already know this, I only mention it because of “join them.”

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-25 09:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found