Flowdock
number_to_percentage(number, options = {}) public

Formats a number as a percentage string (e.g., 65%). You can customize the format in the options hash.

Options

  • :precision - Sets the level of precision (defaults to 3).
  • :separator - Sets the separator between the units (defaults to ".").

Examples

 number_to_percentage(100)                         # => 100.000%
 number_to_percentage(100, :precision => 0)        # => 100%

 number_to_percentage(302.24398923423, :precision => 5)
 # => 302.24399%
Show source
Register or log in to add new notes.