私は、このような文字列として何かに動物を変更したい場合はどう配列要素を文字列に正しく分割する方法は?
%w(Dog Cat Bird Rat).each_with_index do |element, index|
# "w" for word array
# It's a shortcut for arrays
puts ("%-4s + #{index}" % element)
end
よう
Dog + 0
Cat + 1
Bird + 2
Rat + 3
のような類似したこの意志の出力に何かを設定する配列を持っていますか? だからそれは言う
This is string 0 + 0
This is string 1 + 1
This is string 2 + 2
etc
これを行う方法はありますか? これは動作しません:
%w('This is string 0', 'This is string 1', 'This is string 2', 'This is string 3').each_with_index do |element, index|
# "w" for word array
# It's a shortcut for arrays
puts ("%-4s + #{index}" % element)
end
'4倍を{| I | puts "これは文字列#{i} +#{i}"} ' –