Lad wrote:
> Hello,
> How can I  check that a string does NOT contain NON English characters?
> Thanks
> L.
> 
If all you care about is ASCII vs. non-ASCII, you could use:
     ord(max(string)) < 128

-- 
-Scott David Daniels
[EMAIL PROTECTED]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to