数字分割函数
def commify(price)
return price.to_s.gsub(/(\d)(?=\d{3}+$)/, '\\1,')
end
1. 例子如下所示:
12345678
运行代码后:
12,345,678