I want to exclude an expression of a sequence of charecters with regex

2

28tommy

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 (-:
 
F

Fredrik Lundh

28tommy said:
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.

look for "negative lookahead assertion" on this page:

http://docs.python.org/lib/re-syntax.html

</F>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,040
Latest member
papereejit

Latest Threads

Top