Skip to content

Instantly share code, notes, and snippets.

@umidjons
Created January 7, 2015 10:02
Show Gist options
  • Save umidjons/404c22c1ab7730493b7c to your computer and use it in GitHub Desktop.
Save umidjons/404c22c1ab7730493b7c to your computer and use it in GitHub Desktop.
Remove all dots except one in JavaScript with RegEx

Remove all dots except one in JavaScript with RegEx

'123.345..456456.00'.replace(/,/g,'.').replace(/[.](?!\d*$)/g,''); // 123345456456.00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment