Skip to content

Instantly share code, notes, and snippets.

@tbueno
Last active December 16, 2015 11:49
Show Gist options
  • Save tbueno/5429972 to your computer and use it in GitHub Desktop.
Save tbueno/5429972 to your computer and use it in GitHub Desktop.
A conversion from String to Float can be a surprise sometimes....
1.9.3-p286 :007 > '85.78'.to_f
=> 85.78
1.9.3-p286 :008 > '85.78'.to_f * 100
=> 8578.0
1.9.3-p286 :012 > '81.06'.to_f * 100
=> 8106.0
1.9.3-p286 :013 > '81.03'.to_f * 100
=> 8103.0
1.9.3-p286 :009 > '81.07'.to_f * 100
=> 8106.999999999999
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment