Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: perl open mode

by Sidhekin (Priest)
on Oct 24, 2007 at 00:22 UTC ( [id://646789]=note: print w/replies, xml ) Need Help??


in reply to perl open mode

As you are reading from the file handle in list context, you advance its position until eof.

Then you print. At the former eof.

(If you had opened with +>>, you would not have been able to read anything without seeking first.)

Update: For what you want, and with a tiny bit more clarity:

open (A, '+<', "somefile.html") or die $!; s/a/b/g for my @records = <A>; seek(A, 0, 0); print A @records;

print "Just another Perl ${\(trickster and hacker)},"
The Sidhekin proves Sidhe did it!

Replies are listed 'Best First'.
Re^2: perl open mode
by snopal (Pilgrim) on Oct 24, 2007 at 03:16 UTC

    That works if the replacement is character for character. You may be surprised by the results if the replacements are shorter than the original value.

    open (A, '+<', "somefile.html") or die $!; s/a/b/g for my @records = <A>; seek(A, 0, 0); ### truncate (A, 0) or die "can not truncate file to zero length\n"; ### print A @records;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-20 10:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found