Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #2325
| From | "Leo M." <leo.mmcm@gmail.com> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: Separate new lines from an output |
| Date | 2011-04-05 05:38 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <b17d892bf28996db2b491fa267c98dc5@ruby-forum.com> (permalink) |
| References | <d631fa1427d24cffc6f83fbb735b4c84@ruby-forum.com> |
Sorry for being imprecise.
The matter is this : I have 87 files named black1, black2 ...... black
87.
I want ruby to print each file with the entire path, so, this is what
I've written :
i = 1..87
array = []
e = i.each {|i| puts ("/R/blackout/black"+i.to_s+"\n")}
array.push e
puts array.size # => 1
ruby actually prints correctly each line, but as a single array object.
I need that each line, each path printed is a single array object, so
that in the end I'll have an array of 87 as size with :
"/R/blackout/black1"
"/R/blackout/black2"
..
"/R/blackout/black87"
I also tried the .chomp method but is pretty much the same :-\
--
Posted via http://www.ruby-forum.com/.
Back to comp.lang.ruby | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Separate new lines from an output "Leo M." <leo.mmcm@gmail.com> - 2011-04-05 04:30 -0500
Re: Separate new lines from an output Robert Klemme <shortcutter@googlemail.com> - 2011-04-05 04:44 -0500
Re: Separate new lines from an output Haruka YAGNI <hyagni@gmail.com> - 2011-04-05 04:47 -0500
Re: Separate new lines from an output botp <botpena@gmail.com> - 2011-04-05 05:02 -0500
Re: Separate new lines from an output "Leo M." <leo.mmcm@gmail.com> - 2011-04-05 05:38 -0500
Re: Separate new lines from an output Peter Hickman <peterhickman386@googlemail.com> - 2011-04-05 05:59 -0500
Re: Separate new lines from an output Robert Klemme <shortcutter@googlemail.com> - 2011-04-05 07:54 -0500
Re: Separate new lines from an output Peter Hickman <peterhickman386@googlemail.com> - 2011-04-05 08:28 -0500
Re: Separate new lines from an output Peter Hickman <peterhickman386@googlemail.com> - 2011-04-05 08:29 -0500
Re: Separate new lines from an output Josh Cheek <josh.cheek@gmail.com> - 2011-04-05 06:36 -0500
Re: Separate new lines from an output Phillip Gawlowski <cmdjackryan@googlemail.com> - 2011-04-05 07:33 -0500
Re: Separate new lines from an output "Leo M." <leo.mmcm@gmail.com> - 2011-04-05 07:07 -0500
csiph-web