I want to make a regex to match "AGGH", "TIIK", "6^^?" or whatever but not "AGGA", "ABCD". Basically its the pattern of letters which matters. Is there a way to ask for a character you have or haven't previously had?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could extract the pattern of your strings like this:
Examples:
This function makes it trivial to compare the pattern of two strings. |
|||||||||
|
|
There is a way to do it with a regex:
output:
It's ugly, but it works. ;) The period before the dollar sign is needed if you want to match to end of string, it consumes the actual character which is scanned by the (?!(?P=one)), which is a "negative lookahead assertion". |
|||||||||
|
|
Why not just use substring search?
|
|||
|
|
|
Yes, you can use conditional regex:
See the details at http://docs.python.org/library/re.html |
|||
|
|
"AGGA"not a match? It has a repeated character. – Eric Wilson Jun 10 '11 at 17:06