我需要为两个小数位和数千个空格格式化浮动,如下所示: “1 082 233.00”
答案 0 :(得分:10)
使用number_to_currency
或number_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