考虑整数@num = 27565
。我想将其显示为27,000
我在我的rails控制台中尝试了这个:
number_with_delimiter(12345678) # => 12,345,678
但是我收到了这个错误:
NoMethodError: undefined method `number_with_delimiter' for main:Object
一些例子是:
12345678 # => 12,000,000
27565 # => 27,000
更新
NoMethodError
修正如下:
How to use all view and helper methods inside of Rails console for Rails 2.x and 3.x?
但我的第二个问题,即如何在第一个逗号后添加零,却没有得到答案。