I found on the internet this regex in javascript that formats monetary values in R $:
Number( 1450999 )
.toFixed( 2 )
.replace( '.', ',' )
.replace( /(\d)(?=(\d{3})+,)/g, "$1," )
// 1450999 -> 1.450.999,00
I have been analyzing for a lon...
asked by
03.11.2016 / 17:29