Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to have rails print out a number with commas in it?

For example, if I have a number 54000000.34, I can run <%= number.function %>, which would print out "54,000,000.34"

thanks!

share|improve this question

4 Answers

up vote 78 down vote accepted

You want the number_with_delimiter method. For example:

<%= number_with_delimiter(@number, :delimiter => ',') %>

Alternatively, you can use the number_with_precision method to ensure that the number is always displayed with two decimal places of precision:

<%= number_with_precision(@number, :precision => 2, :delimiter => ',') %>
share|improve this answer
Can this be used in a helper i.e module? or is it just for views? is there a equivalent method for a moudle? thanks – Mo. Jul 21 '10 at 16:21
1  
@Mo It's a view helper method. You should be able to use it from a module by including ActionView::Helpers::NumberHelper within the module. – John Topley Jul 22 '10 at 7:55

Yes, use the NumberHelper. The method you are looking for is number_with_delimiter.

 number_with_delimiter(98765432.98, :delimiter => ",", :separator => ".")
 # => 98,765,432.98
share|improve this answer

For anyone not using rails:

number.to_s.reverse.gsub(/(\d{3})(?=\d)/, '\\1,').reverse
share|improve this answer
Nice. And your answer seems to be minutely (only a fraction of a second over one million iterations) faster than the approach presented here: number.to_s.reverse.scan(/(?:\d*\.)?\d{1,3}-?/).join(',').reverse – user664833 Dec 31 '12 at 22:21
can you explain what is going on here? number.to_s.reverse.gsub(/(\d{3})(?=\d)/, '\\1,').reverse – Stephen Nguyen Feb 21 at 23:37
2  
Sure, it reverses the string, then adds a comma after any sequence of 3 digits that is also followed by another digit, then reverses it back. – pguardiario Feb 22 at 0:04
This is good, however it doesn't work for decimals. – renosis Mar 8 at 15:21
@renosis, sure it does. – pguardiario Mar 10 at 0:43
show 3 more comments

If you're doing it a lot but also FYI because its not implied by the above, rails has sensible defaults for the number_with_delimiter method.

#inside controller or view
number_with_delimiter(2444323.4)
#=> 2,444,323.30

#inside console
helper.number_with_delimiter(233423)
#=> 233,423

No need to supply the delimiter value if you're doing it the most typical way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.