Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Regex solution in Clear category for Currency Style by DiZ
import re
def checkio(text):
EU2US = lambda match: match.group().translate({44: 46, 46: 44})
return re.sub('\$\d{,3}(\.\d{3})*(,\d{2})?(?!\d)', EU2US, text)
Sept. 3, 2015