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!
|
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! |
||||
|
|
|
You want the
Alternatively, you can use the
|
|||||||
|
|
Yes, use the NumberHelper. The method you are looking for is number_with_delimiter.
|
||||
|
|
|
For anyone not using rails:
|
|||||||||||||
|
|
If you're doing it a lot but also FYI because its not implied by the above, rails has sensible defaults for the
No need to supply the delimiter value if you're doing it the most typical way. |
|||
|
|