Hello all, I know how to exclude 1 charecter from a compiled sequence of the re module- '[^a]', but if I want to exclude a word or a sequence as one unit (not as separate charecters) to be checked.... how do I do that?
I tried re.compile('[^(abc)]')
... or re.compile('[^a][^b][^c]')
... or re.compile('[^a^b^c]')
None of these worked.
Thanks in advance (-:
--
http://mail.python.org/mailman/listinfo/python-list
