Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: File Input and Output

by Anonymous Monk
on Jun 08, 2001 at 18:54 UTC ( [id://86920]=note: print w/replies, xml ) Need Help??


in reply to File Input and Output

is there some way to read in an input & store it character by character?

Replies are listed 'Best First'.
Re: Re: File Input and Output
by ariels (Curate) on Jul 24, 2001 at 14:56 UTC
    getc. Note well the documentation -- it's still buffered input!

    ObSampleCode:

    while ($_ = getc STDIN) { $_ = ord $_; printf "%02x %c\n", $_, 32 <= $_ && $_ < 127 ? $_ : ord '?'; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (5)
As of 2024-04-18 02:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found