前端之家收集整理的这篇文章主要介绍了
ruby – 我怎样才能将空格填充到固定长度,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要所有字符串的长度为5
原创[477,4770,]
预期[“477”,“4770”]
我怎么能用Ruby做到这一点?
你应该使用
ljust
:
arr = [477,4770]
strings = arr.map { |number| number.to_s.ljust(5) }
# => ["477 ","4770 "]
祝好运!
原文链接:https://www.f2er.com/ruby/271169.html