ドルの通貨フォーマットに変換
<%= number_to_currency(123456789) %>
→ $123,456,789.00
小数点5つまで表示
<%= number_to_currency(123456789, :precision => 5) %>
→ $123,456,789.00000
小数点をスペースで区切る
<%= number_to_currency(123456789, :separator => " ") %>
→ $123,456,789 00
桁区切りをスペース
<%= number_to_currency(123456789, :delimiter => " ") %>
→ $123 456 789.00
通過単位を「¥」
<%= number_to_currency(123456789, :unit => "¥") %>
→ ¥123,456,789.00
通過単位を「JPY」
<%= number_to_currency(123456789, :unit => "JPY") %>
→ 123,456,789.00JPY
※ この場合は、後ろにつくので注意
通貨単位を後ろ
<%= number_to_currency(123456789, :format => "%u%n", :unit => "¥") %>
→ 123,456,789.00円
ここでの「%u」はunitの略、また「%n」はnumberの略
入れ替えれば、順番も逆になる
マイナスのフォーマット
<%= number_to_currency(-123456789, :negative_format => "%u-%n") %>
→ $-123,456,789.00
円のロケールを設定
# config/locales/jp/yml
jp:
number:
currency:
format:
unit: "円"
format: "%n%u"
negative_format: "-%n%u"
precision: 0
<%= number_to_currency(123456789, :locale => 'jp') %>
→ 123,456,789円