Skip to content

Instantly share code, notes, and snippets.

@carlossaraiva
Created October 22, 2015 13:49
Show Gist options
  • Save carlossaraiva/a13936472c52df384be9 to your computer and use it in GitHub Desktop.
Save carlossaraiva/a13936472c52df384be9 to your computer and use it in GitHub Desktop.
function moneyFormatConvert(value: string) {
var money = new RegExp(/^((?:\d{1,3}\,?)+)(\.\d{1,2})/).exec(value);
return money[1].replace(/,/g, ".") + money[2].replace(".", ",");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment