Skip to content

Instantly share code, notes, and snippets.

@fcgomes92
Created April 8, 2020 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcgomes92/070240450631c839f36dbdf15c995771 to your computer and use it in GitHub Desktop.
Save fcgomes92/070240450631c839f36dbdf15c995771 to your computer and use it in GitHub Desktop.
Format any string to a simple number
function toNumber(num) {
return Number(String(num).replace(/\./g, ',').replace(/(.+),/g, '$1.').replace(/[^\d.]/g, '').trim())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment