Align columns: Difference between revisions

Content added Content deleted
Line 3,807: Line 3,807:


=={{header|Ruby}}==
=={{header|Ruby}}==
<lang ruby>require 'stringio'
<lang ruby>J2justifier = {'L' => :ljust,
'R' => :rjust,
'C' => :center}


textinfile = <<END
Given$a$text$file$of$many$lines,$where$fields$within$a$line$
are$delineated$by$a$single$'dollar'$character,$write$a$program
that$aligns$each$column$of$fields$by$ensuring$that$words$in$each$
column$are$separated$by$at$least$one$space.
Further,$allow$for$each$word$in$a$column$to$be$either$left$
justified,$right$justified,$or$center$justified$within$its$column.
END

J2justifier = {'L' => String.instance_method(:ljust),
'R' => String.instance_method(:rjust),
'C' => String.instance_method(:center)}
=begin
=begin
Justify columns of textual tabular input where the record separator is the newline
Justify columns of textual tabular input where the record separator is the newline
Line 3,830: Line 3,819:
=end
=end
def aligner(infile, justification = 'L')
def aligner(infile, justification = 'L')
justifier = J2justifier[justification]
fieldsbyrow = infile.map {|line| line.strip.split('$')}
fieldsbyrow = infile.map {|line| line.strip.split('$')}
# pad to same number of fields per record
# pad to same number of fields per record
maxfields = fieldsbyrow.map {|row| row.length}.max
maxfields = fieldsbyrow.map(&:length).max
fieldsbyrow.map! {|row|
fieldsbyrow.map! {|row| row + ['']*(maxfields - row.length)}
row + ['']*(maxfields - row.length)
}
# calculate max fieldwidth per column
# calculate max fieldwidth per column
colwidths = fieldsbyrow.transpose.map {|column|
colwidths = fieldsbyrow.transpose.map {|column|
column.map {|field| field.length}.max
column.map(&:length).max
}
}
# pad fields in columns to colwidth with spaces
# pad fields in columns to colwidth with spaces
justifier = J2justifier[justification]
fieldsbyrow.map! {|row|
fieldsbyrow.map {|row|
row.zip(colwidths).map {|field, width|
row.zip(colwidths).map {|field, width|
justifier.bind(field)[width]
field.send(justifier, width)
}
}.join(" ")
}
}.join("\n")
fieldsbyrow.map {|row| row.join(" ")}.join("\n")
end
end

require 'stringio'

textinfile = <<END
Given$a$text$file$of$many$lines,$where$fields$within$a$line$
are$delineated$by$a$single$'dollar'$character,$write$a$program
that$aligns$each$column$of$fields$by$ensuring$that$words$in$each$
column$are$separated$by$at$least$one$space.
Further,$allow$for$each$word$in$a$column$to$be$either$left$
justified,$right$justified,$or$center$justified$within$its$column.
END


for align in %w{Left Right Center}
for align in %w{Left Right Center}