Skip to content

Instantly share code, notes, and snippets.

@yannvery
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save yannvery/4b6c1ea6f20725a3b2d6 to your computer and use it in GitHub Desktop.

Select an option

Save yannvery/4b6c1ea6f20725a3b2d6 to your computer and use it in GitHub Desktop.
Rails helper to abbrev number
def abbrev_number(number,decimal)
l=number.to_s.length - 1
"%.#{decimal}f%s"%[number.to_f/10**(l-l%3)," kMGTPE"[l/3]]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment