Skip to content

Instantly share code, notes, and snippets.

@Tolia
Created September 4, 2015 08:51
Show Gist options
  • Save Tolia/927a6ba40e03da4925c9 to your computer and use it in GitHub Desktop.
Save Tolia/927a6ba40e03da4925c9 to your computer and use it in GitHub Desktop.
Split price to segments RegExp
var regexp = /(\d)(?=(\d\d\d)+([^\d]|$))/g;
console.log('1001050000'.replace(regexp, '$1 '));
console.log('10000.5'.replace(regexp, '$1 '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment