Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Can't be bothered... solution in Creative category for Currency Style by StefanPochmann
import re
def dotcomma(match):
s = match.group()
return s[:-3].replace('.', ',') + s[-3:].replace(',', '.')
def checkio(text):
return re.sub(r'\$[0-9.,]+\d', dotcomma, text)
Feb. 15, 2016
Comments: