我需要所有字符串的长度5
原始[477, 4770,]
预期["477 ", "4770 "]
我怎么能用鲁比呢?

最佳答案

你应该使用ljust

arr = [477, 4770]
strings = arr.map { |number| number.to_s.ljust(5) }
# => ["477  ", "4770 "]

祝你好运!

08-25 19:22