Skip to content

Instantly share code, notes, and snippets.

@AlexBaranosky
Last active March 3, 2016 23:55
Show Gist options
  • Save AlexBaranosky/bdf9a25ecaf5162a6529 to your computer and use it in GitHub Desktop.
Save AlexBaranosky/bdf9a25ecaf5162a6529 to your computer and use it in GitHub Desktop.
remove scientific notation for floats
(defn drop-trailing-zeros [^String s]
(.replaceFirst s "\\.0*$|(\\.\\d*?)0+$" "$1"))
(defmethod print-method Number [o, ^Writer w]
(if (float? o)
(.write w (drop-trailing-zeros (format "%.99f" o)))
(.write w (str o))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment