Skip to content

Instantly share code, notes, and snippets.

@rbarros
Created October 21, 2015 11:48
Show Gist options
  • Save rbarros/f0afd894dfdff998c770 to your computer and use it in GitHub Desktop.
Save rbarros/f0afd894dfdff998c770 to your computer and use it in GitHub Desktop.
var value = 170090; // 'R$ 1.700,90'
var money = parseInt(value.replace(/[\D]+/g,''))
.toString()
.replace(/([0-9]{2})$/g, ',$1')
.replace(/([0-9]{3}),([0-9]{2}$)/g, '.$1,$2')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment