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 scott.daniels at acm.org