Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Currency Style by Moff
import re
def checkio(s):
return re.sub('(\$\d{1,3}(?:\.\d{3})*(?:,?\d{1,2})?)(?!\d)',
lambda p: p.group(1).replace(',', '_').
replace('.', ',').replace('_', '.'), s)
Sept. 8, 2015
Comments: