Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large Ruby array that I would like to print in columns, just like the default output of Unix' 'ls' command (on OS X, at least). Is there a gem or built-in method that can do this? I am aware of the awesome_print gem. It's got some sexy output but it doesn't seem to offer columns.

share|improve this question
Shouldn't be too hard to code this manually. It's 5 lines of code :) – Sergio Tulentsev Jun 19 '12 at 19:30
3  
How about posting some sample data and some sample output? My crystal ball is offline today. – CodeGnome Jun 19 '12 at 19:37
@Sergio: The reason I ask this question here is not because I don't know how to code it manually, but rather because I'm looking for something in the standard library or a gem that I can require so that I can shorten my own code. – Sean Mackesey Jun 19 '12 at 20:08
@CodeGnome: I'm not sure what you're looking for in the way of sample code. This is a simple question about what's out there, I am not looking for a multi-line code solution. I realize I should change the title to reflect this. Sorry about your crystal ball, that happens to me too. – Sean Mackesey Jun 19 '12 at 20:09

4 Answers

up vote 1 down vote accepted

I think to use hirb is more useful:

require 'hirb'

Hirb.enable :output=>{"Array"=>{:class=>Hirb::Helpers::Table}}  #=> true

[[1,2], [2,3]]
+---+---+
| 0 | 1 |
+---+---+
| 1 | 2 |
| 2 | 3 |
+---+---+
2 rows in set

[[5,6,3,4]]
+---+---+---+---+
| 0 | 1 | 2 | 3 |
+---+---+---+---+
| 5 | 6 | 3 | 4 |
+---+---+---+---+
1 row in set
share|improve this answer
Awesome. This is just about what I was looking for. In your example, I see you have to feed it an array of arrays, so you would need to use Enumerable#each_slice first if you have just a 1D array. This is a minor thing, but I am still wondering: can hirb autotable a 1D array? – Sean Mackesey Jun 19 '12 at 22:07
Just wrap up an array in another array, see the update – megas Jun 19 '12 at 22:09

Enumerable#each_slice may be your friend.

$ irb
irb> a = (0..18).to_a
=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
irb> a.each_slice(5) { |row| puts row.map{|e| "%5d" % e}.join("  ") }
    0      1      2      3      4
    5      6      7      8      9
   10     11     12     13     14
   15     16     17     18

If you want them ordered within columns, you can use slice and Enumerable#zip

irb> cols = a.each_slice((a.size+2)/3).to_a
=> [[0, 1, 2, 3, 4, 5, 6], [7, 8, 9, 10, 11, 12, 13], [14, 15, 16, 17, 18]]
irb> cols.first.zip( *cols[1..-1] ).each{|row| puts row.map{|e| e ? '%5d' % e : '     '}.join("  ") }
    0      7     14
    1      8     15
    2      9     16
    3     10     17
    4     11     18
    5     12       
    6     13       
share|improve this answer
Very slick. I will use this. I am still wondering whether there is a standard library or common gem function somewhere that handles this though, perhaps adjusting column spacing automatically. – Sean Mackesey Jun 19 '12 at 21:59
@Sean: very slick indeed, i like those answers which really teach you something, thanks dbenhur, but do you realize that when you include a gem you include perhaps thousand of lines of code ? why then bother with a few lines of code to do the job ? – peter Jun 19 '12 at 22:59

I agree with the commenters Sean but i just couldnt hold mysef and instead held my pee to give bearth to this cutie, i'm on Windows so don't know how the output of ls is alike but i'm sure there are options enough here to give you the desired output

cm = {'headers' => ['first', 'second', 'third', 'fourth'], 'width' => [5, 5, 16, 30], 'separator' => '|', 'align' => [:left,:right,:left,:right]}
a = [["on", "two", "three", "a loooooooooooooooonger field"],["four","five","looooooooooonger","short one"]]
cm['headers'].each_with_index{|header, index|w = cm['width'][index];print "#{cm['align'][index]==:left ? header.ljust(w)[0..w-1]:header.rjust(w)[0..w-1]}#{cm['separator']}"}
puts ""
a.each do |record|
  record.each_with_index do |field, index|
    w = cm['width'][index]
    print "#{cm['align'][index]==:left ? field.ljust(w)[0..w-1]:field.rjust(w)[0..w-1]}#{cm['separator']}"
  end
  puts ""
end

gives

first|secon|third           |                        fourth|
on   |  two|three           | a loooooooooooooooonger field|
four | five|looooooooooonger|                     short one|
share|improve this answer
Ye gods that is a scary cutie. I appreciate that it gets the job done but there are simpler solutions. – Sean Mackesey Jun 19 '12 at 21:56
i go for full fledged and reusable, although i think it could be done shorter but that's beyond my current knowledge of Ruby – peter Jun 19 '12 at 22:03

In addition to my first full fledged configurable solution here a shorter one based on the maximum string length of the elements

class Array
  def to_table l = []
    self.each{|r|r.each_with_index{|f,i|l[i] = [l[i]||0, f.length].max}}
    self.each{|r|r.each_with_index{|f,i|print "#{f.ljust l[i]}|"};puts ""}
  end
end

[["on", "two", "three", "a loooooooooooooooonger field"],["four","five","looooooooooonger","short one"]].to_table

gives

on  |two |three           |a loooooooooooooooonger field|
four|five|looooooooooonger|short one                    |
share|improve this answer
This looks like a decent extension, and much cleaner than the other. – Sean Mackesey Jun 20 '12 at 2:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.