Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Reading a text file and formatted printing

by wardk (Deacon)
on Sep 06, 2001 at 18:47 UTC ( [id://110594]=note: print w/replies, xml ) Need Help??


in reply to Reading a text file and formatted printing

[id://Tas00],

you will need to of course to open() the file and read through it, here is open file and read through it 101...

open FH, "</path/to/myfilename" or die "cannot open myfilename $!\n"; while (<FH>) { # process each line which is stored in this example in $_ print $_; }

Since you want to print in columns, I suspect you will profit from learing about split() and printf() (or sprintf() )

have fun!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-24 06:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found