web-dev-qa-db-ja.com

Rails:小数をパーセントで出力する方法は?

パーセンテージとして小数を印刷する方法はありますか?したがって、ピリオドの後の2桁のみです。

私の小数は常に1から0の間なので、3番目の文字からnumber.round(2)を呼び出すとうまくいくと思いますが、その構文はどこにも見つかりません。

明確にするために、数値を完全な10進数として保存し、パーセンテージとして出力したいとします。

16
user4133294

おそらくnumber_to_percentage 方法。 documentation から、これを使用する方法の例をいくつか示します。

number_to_percentage(100)                                        # => 100.000%
number_to_percentage("98")                                       # => 98.000%
number_to_percentage(100, precision: 0)                          # => 100%
number_to_percentage(1000, delimiter: '.', separator: ',')       # => 1.000,000%
number_to_percentage(302.24398923423, precision: 5)              # => 302.24399%
number_to_percentage(1000, locale: :fr)                          # => 1 000,000%
number_to_percentage("98a")                                      # => 98a%
number_to_percentage(100, format: "%n  %")                       # => 100  %

オプション:

:locale - Sets the locale to be used for formatting (defaults to current locale).
:precision - Sets the precision of the number (defaults to 3).
:significant - If true, precision will be the # of significant_digits. If false, the # of fractional digits (defaults to false).
:separator - Sets the separator between the fractional and integer digits (defaults to “.”).
:delimiter - Sets the thousands delimiter (defaults to “”).
:strip_insignificant_zeros - If true removes insignificant zeros after the decimal separator (defaults to false).
:format - Specifies the format of the percentage string The number field is %n (defaults to “%n%”).

または、次のようにRubyと書くこともできます。

 class Numeric
   def percent_of(n)
    self.to_f / n.to_f * 100.0
   end
 end

p (1).percent_of(10)    # => 10.0  (%)
p (200).percent_of(100) # => 200.0 (%)
p (0.5).percent_of(20)  # => 2.5   (%)
25
Joel

number_to_percentageヘルパーを使用して、ビューにパーセンテージとして数値を出力できます。あなたの数が0と1の間にあるなら、あなたはそれを達成することができます:

number_to_percentage(@number * 100, precision: 0) 

ドキュメント を参照してください

7
Alireza