Add Comma's To Numbers In Ruby

Posted By Weston Ganger

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:

Article Topic:Software Development - Ruby / Rails

Date:February 05, 2016