Lad wrote: >How can I check that a string does NOT contain NON English characters?
try: foobar.encode('ascii') except: bla or use string.ascii_letters and enhance it. mfg Daniel -- http://mail.python.org/mailman/listinfo/python-list
Lad wrote: >How can I check that a string does NOT contain NON English characters?
try: foobar.encode('ascii') except: bla or use string.ascii_letters and enhance it. mfg Daniel -- http://mail.python.org/mailman/listinfo/python-list