如何将逗号添加到大整数并在第一个逗号后添加零

时间:2015-04-08 04:27:30

标签: ruby-on-rails ruby

考虑整数@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?

但我的第二个问题,即如何在第一个逗号后添加零,却没有得到答案。

0 个答案:

没有答案