ho scritto una cosa
- Rileva automaticamente la larghezza delle colonne
- gli ambienti con spazi
- array di array
[[],[],...]
o array di hash [{},{},...]
Non rileva colonne troppo larghe per la finestra della console
elenca = [ [123, "SDLKFJSLDKFJSLDKFJLSDKJF"], [123456, "ffff"], ]
array_maxes
def array_maxes(lists)
lists.reduce([]) do |maxes, list|
list.each_with_index do |value, index|
maxes[index] = [(maxes[index] || 0), value.to_s.length].max
end
maxes
end
end
array_maxes(lists)
# => [6, 24]
puts_arrays_columns
def puts_arrays_columns(lists)
maxes = array_maxes(hashes)
lists.each do |list|
list.each_with_index do |value, index|
print " #{value.to_s.rjust(maxes[index])},"
end
puts
end
end
puts_arrays_columns(lists)
# Output:
# 123, SDLKFJSLDKFJSLDKFJLSDKJF,
# 123456, ffff,
e un altro cosa
hashes = [
{ "id" => 123, "name" => "SDLKFJSLDKFJSLDKFJLSDKJF" },
{ "id" => 123456, "name" => "ffff" },
]
hash_maxes
def hash_maxes(hashes)
hashes.reduce({}) do |maxes, hash|
hash.keys.each do |key|
maxes[key] = [(maxes[key] || 0), key.to_s.length].max
maxes[key] = [(maxes[key] || 0), hash[key].to_s.length].max
end
maxes
end
end
hash_maxes(hashes)
# => {"id"=>6, "name"=>24}
puts_hashes_columns
def puts_hashes_columns(hashes)
maxes = hash_maxes(hashes)
return if hashes.empty?
# Headers
hashes.first.each do |key, value|
print " #{key.to_s.rjust(maxes[key])},"
end
puts
hashes.each do |hash|
hash.each do |key, value|
print " #{value.to_s.rjust(maxes[key])},"
end
puts
end
end
puts_hashes_columns(hashes)
# Output:
# id, name,
# 123, SDLKFJSLDKFJSLDKFJLSDKJF,
# 123456, ffff,
Edit: Correzioni chiavi hash considerati nella lunghezza.
hashes = [
{ id: 123, name: "DLKFJSDLKFJSLDKFJSDF", asdfasdf: :a },
{ id: 123456, name: "ffff", asdfasdf: :ab },
]
hash_maxes(hashes)
# => {:id=>6, :name=>20, :asdfasdf=>8}
Vuoi colonne colonne whitelist?
hashes.map{ |h| h.slice(:id, :name) }
# => [
# { id: 123, name: "DLKFJSDLKFJSLDKFJSDF" },
# { id: 123456, name: "ffff" },
#]
C'è un printf e uno sprint che utilizzano gli argomenti C per formattare una stringa. Sono metodi su Kernal (efficacemente integrato). Vedi http://www.ruby-doc.org/core/classes/Kernel.html#M005962. –
printf ("% - 10s% 10s", args) ha fatto il trucco ... Grazie mille! – predhme
ricorda [printf (* args)] (http://apidock.com/ruby/Kernel/printf) ha una [implementazione su string #] (http://ruby-doc.org/docs/ProgrammingRuby/html/ ref_c_string.html # String._pc):%: '"% s% 10s "% [value_name, value]' sembra fantastico. Ad ogni modo, non sfigurare il tuo codice con grandi termini di questo! – abstraktor