给出字符串:
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