Skip to content

Instantly share code, notes, and snippets.

@iDiogenes
Created September 15, 2010 00:49
Show Gist options
  • Save iDiogenes/580063 to your computer and use it in GitHub Desktop.
Save iDiogenes/580063 to your computer and use it in GitHub Desktop.
@quotasize = 4G
storage = @quotasize.slice!(/GMT/)
quota_thres = sprintf('%0.2f',(@quotasize.to_f/((1+0.10))))
puts storage
puts quota_thres
@bensie
Copy link

bensie commented Sep 15, 2010

@quotasize = "4.34G"

p @quotasize.slice!(/[GMT]/)

p sprintf('%0.2f',(@quotasize.to_f/((1+0.10))))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment