Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Using +> for File Read/Write

by pg (Canon)
on Nov 01, 2005 at 21:24 UTC ( [id://504746]=note: print w/replies, xml ) Need Help??


in reply to Using +> for File Read/Write

A quick demo:

use Fcntl 'SEEK_CUR'; use strict; use warnings; open FILE, ">chars"; for (0 .. 25) { print FILE chr(ord('a') + $_); } close FILE; system("type chars"); print "\n"; open(FILE,"+<chars"); while (1) { sysread(FILE, my $chr, 1); last if (!ord($chr)); sysseek(FILE, -1, SEEK_CUR); syswrite(FILE, chr(ord($chr) - ord('a') + ord('A'))); } close FILE; system("type chars");

This prints:

abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ

Log In?
Username:
Password:

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

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

    No recent polls found