LoginSignup
0
1

More than 3 years have passed since last update.

【Rails】小数点と3桁ずつ区切るカンマ

Posted at

1234.50

 "#{(product.price).to_f}"
=> 1234.5

 "#{(product.price).to_s(:delimited)}"
=> 1,234.5
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1