Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: open file for read/write

by VSarkiss (Monsignor)
on Dec 08, 2005 at 15:20 UTC ( [id://515265]=note: print w/replies, xml ) Need Help??


in reply to Re: open file for read/write
in thread open file for read/write

Minor nit, but a C-style for loop like that is really unnecessary here. You can do:

for $elem (@ARRAY) { $elem =~ s#find#replace#; }
Or even more concisely:
s#find#replace# for @ARRAY;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-25 07:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found