Rails: Is there a rails trick to adding commas to large numbers?

前端 未结 14 1907
小鲜肉
小鲜肉 2020-12-07 08:19

Is there a way to have rails print out a number with commas in it?

For example, if I have a number 54000000.34, I can run <%= number.function %>, which would prin

14条回答
  •  有刺的猬
    2020-12-07 09:18

    Another solution that does not use Helpers: format with 2 decimal places, and then replace . by ,

    puts(("%.2f" % 2.5666).gsub('.',','))
    >> 2,57
    

提交回复
热议问题