红宝石 – 如何删除一个尾随的逗号?

前端之家收集整理的这篇文章主要介绍了红宝石 – 如何删除一个尾随的逗号?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给出字符串:
Bob
Bob,Bob
Bob Burns,

你如何返回那个w / o一个逗号?

Bob
Bob
Bob
Bob Burns

另外,我想这个方法不会打破,如果通过一个零,只是为了返回一个零?

def remove_trailing_comma(str)
  !str.nil? ? str.replace(",") :nil
end

解决方法

我的想法是使用 string.chomp

Returns a new String with the given record separator removed from the end of str (if present).

这是否做你想要的?

def remove_trailing_comma(str)
    str.nil? ? nil : str.chomp(",")
end
原文链接:https://www.f2er.com/ruby/272672.html

猜你在找的Ruby相关文章