>>> d = re.compile(' \d{3}\.\d{3}\.\d{3} ') >>> d.findall(' 123.345.678 ') [' 123.345.678 ']
Works for me. -- http://mail.python.org/mailman/listinfo/python-list
>>> d = re.compile(' \d{3}\.\d{3}\.\d{3} ') >>> d.findall(' 123.345.678 ') [' 123.345.678 ']
Works for me. -- http://mail.python.org/mailman/listinfo/python-list