newbie qusetion: read a file and print out same file

J

joemacbusiness

Hi All,

How do I read an input file and print it back to STDOUT
exactly as the original file. This should be very simple
but the output of my program is all garbled.
What am I doing wrong?
( I am using http://www.rubycentral.com/book to learn Ruby)

The program, input, and runtime output are below.

Thanks, --JM
================= snip ==============

$ cat ./test56.rb
#!/usr/local/bin/ruby

inputFile = File.readlines("input4", 'r')

for item in inputFile
item.chop()
print item, "\n"
end
$
$ cat input4
car
tree
house
candy bar
paper
ocean
$ ./test56.rb
car

tr
ee
house
candy bar

paper

ocean
 
D

David A. Black

Hi --

Hi All,

How do I read an input file and print it back to STDOUT
exactly as the original file. This should be very simple
but the output of my program is all garbled.
What am I doing wrong?
( I am using http://www.rubycentral.com/book to learn Ruby)

The program, input, and runtime output are below.

Thanks, --JM
================= snip ==============

$ cat ./test56.rb
#!/usr/local/bin/ruby

inputFile = File.readlines("input4", 'r')

for item in inputFile
item.chop()
print item, "\n"
end

You're working too hard :)

input_file = File.readlines("input4")
puts input_file

or just

puts File.read("input4")

If you do have occasion to loop through an array of lines (which no
doubt you will at some point), remember that chop doesn't do a
permanent chop. What you probably want is chomp!, which removes a
trailing newline if there is one.


David
 
J

joemacbusiness

Hi --











You're working too hard :)

input_file = File.readlines("input4")
puts input_file

or just

puts File.read("input4")

If you do have occasion to loop through an array of lines (which no
doubt you will at some point), remember that chop doesn't do a
permanent chop. What you probably want is chomp!, which removes a
trailing newline if there is one.

David


Hello David,

I wanted to loop through the input file "line-by-line"
and print it out the same way. Sorry I did not make that
clear.
Here is the code block that does what I wanted.

inputFile = File.open("input4", 'r')
while line = inputFile.gets()
puts line
end

Thank you, --JM
 
B

Brian Candler

unknown said:
$ cat input4
car
tree
house
candy bar
paper
ocean
$ ./test56.rb
car

tr
ee
house
candy bar

paper

ocean

Interesting output, especially the split 'tree'. To see what's going on,
I added an extra line to your code:

inputFile = File.readlines("input4", 'r')
p inputFile

This gives the following output:

["car", "\ntr", "ee\nhouse\ncandy bar", "\npaper", "\nocean\n"]

To understand what's happening here, read the documentation under "ri
IO::readlines"

---------------------------------------------------------- IO::readlines
IO.readlines(name, sep_string=$/) => array
------------------------------------------------------------------------
Reads the entire file specified by _name_ as individual lines, and
returns those lines in an array. Lines are separated by
_sep_string_.

a = IO.readlines("testfile")
a[0] #=> "This is line one\n"

So, the problem is that the 'r' is not the file input mode, but the
separator character! The fact you had the words "car", "bar" and "paper"
(all ending in 'r') made this rather unclear. It looks like it's mostly
splitting at the end of a line, but actually it's splitting after a
letter 'r'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top