Flowdock
number_to_percentage(number, options = {}) public

Formats a number as a percentage string. You can customize the format in the options hash.

  • :precision - Sets the level of precision, defaults to 3
  • :separator - Sets the separator between the units, defaults to "."
 number_to_percentage(100)    => 100.000%
 number_to_percentage(100, {:precision => 0})   => 100%
 number_to_percentage(302.0574, {:precision => 2})   => 302.06%
Show source
Register or log in to add new notes.