如何格式化小数

时间:2010-09-14 14:21:33

标签: ruby-on-rails ruby

我需要为两个小数位和数千个空格格式化浮动,如下所示: “1 082 233.00”

2 个答案:

答案 0 :(得分:10)

使用number_to_currencynumber_with_precision

number_with_precision(1082233, :precision => 2,
                               :separator => '.',
                               :delimiter => ' ')
# => '1 082 233.00'

有关详细信息,请参阅NumberHelper文档。

答案 1 :(得分:1)

如果您不使用Rails,请查看:http://codesnippets.joyent.com/posts/show/1812