Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Currency Style solution in Clear category for Currency Style by Atadolfo
var currencyStyle = (line: string): string => line.replace(/\$\d+(\.\d{3})*/g, v => v.replace(/\./g, ","))
.replace(/(,)(.{1,2})\b/g, ".$2");
Sept. 25, 2020
Comments: