If you have some large numbers, displaying them without commas can be hard to read.

Here a simple method in Rails through ActiveSupport


# in controller or view
number_with_delimiter(123456789)
# => 123,456,789

#in console
helper.number_with_delimiter(123456789)


Related External Links: