Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sorry about the title, I couldn't come up with a clean way to ask my question.

In Python I would like to match an expression 'c[some stuff]t', where [some stuff] could be any number of consecutive a's, b's, or c's and in any order.

For example, these work: 'ct', 'cat', 'cbbt', 'caaabbct', 'cbbccaat'

but these don't: 'cbcbbaat', 'caaccbabbt'

Edit: a's, b's, and c's are just an example but I would really like to be able to extend this to more letters. I'm interested in regex and non-regex solutions.

share|improve this question
It seems from the majority of responses that the only way to encode this is manually setting up all of the cases. Is this true? This would be very hard if I wanted to add two more letters. I think that would be 120 cases. – Usagi Jul 11 '11 at 18:01
"now you have two problems"? – Wooble Jul 11 '11 at 18:06
@Wooble - No, I just want the solution to be extensible. The completely manual/direct approach would require a lot of typing. – Usagi Jul 11 '11 at 18:10

5 Answers

up vote 6 down vote accepted

Not sure how attached you are to regex, but here is a solution using a different method:

from itertools import groupby

words = ['ct', 'cat', 'cbbt', 'caaabbct', 'cbbccaat',  'cbcbbaat', 'caaccbabbt']
for w in words:
    match = False
    if w.startswith('c') and w.endswith('t'):
        temp = w[1:-1]
        s = set(temp)
        match = s <= set('abc') and len(s) == len(list(groupby(temp)))
    print w, "matches" if match else "doesn't match"

The string matches if a set of the middle characters is a subset of set('abc') and the number of groups returned by groupby() is the same as the number of elements in the set.

share|improve this answer
I'm interested in how the efficiencies compare. I'm not necessarily attached to regex. – Usagi Jul 11 '11 at 18:21
Very nice, and also easily extensible! I wrote a non-regexp answer myself, but yours is much better, so I'm just giving you an upvote instead of posting mine. – Lauritz V. Thaulow Jul 11 '11 at 19:44
+1: easier to read than the regex solution. – Neil G Jul 11 '11 at 22:00
@Andrew - I like how this is very human readable. This solution also appeals to my mathematical side with the inclusion of sets. Seems efficient, how does it compare to regex? Anyone? – Usagi Jul 12 '11 at 23:05
@Usagi: it should be linear in the length of the string, so asymptotically, you can't beat it. – Neil G Jul 13 '11 at 6:01

Not thoroughly tested, but I think this should work:

import re

words = ['ct', 'cat', 'cbbt', 'caaabbct', 'cbbccaat',  'cbcbbaat', 'caaccbabbt']
pat = re.compile(r'^c(?:([abc])\1*(?!.*\1))*t$')
for w in words:
    print w, "matches" if pat.match(w) else "doesn't match"

#ct matches
#cat matches
#cbbt matches
#caaabbct matches
#cbbccaat matches
#cbcbbaat doesn't match
#caaccbabbt doesn't match

This matches runs of a, b or c (that's the ([abc])\1* part), while the negative lookahead (?!.*\1) makes sure no other instance of that character is present after the run.

(edit: fixed a typo in the explanation)

share|improve this answer
Works like a charm :) – Usagi Jul 12 '11 at 23:06

I believe you need to explicitly encode all possible permutations of as, bs and cs:

c(a*b*c*|b*a*c*|b*c*a*|c*b*a*|c*a*b*|a*c*b*)t

Note that this is an extremely inefficient query which may backtrack a lot.

share|improve this answer
It does? Seems to me that at most the whole string could be analized 6 times before failing. I don't see any exponential explosion typical of problematic regexps... – 6502 Jul 11 '11 at 17:52

I don't know the Python regex engine, but it sounds like you just want to write out the 6 different possible orderings directly.

/c(a*b*c*|a*c*b*|b*a*c*|b*c*a*|c*a*b*|c*b*a*)t/
share|improve this answer
Is there another way? If I wanted to add d and e, for instance, I would have to manually type 120 cases. – Usagi Jul 11 '11 at 17:57
1  
@Usagi No. Anything more complicated and you really should ditch regular expressions and parse it manually instead. – Kevin Ballard Jul 11 '11 at 17:59
1  
@Usagi: You can write a function that generates the regex string fairly easily to avoid the manual typing. – trutheality Jul 11 '11 at 18:00
@trutheality: Sure, but you're getting into extreme inefficiencies with all the backtracking. – Kevin Ballard Jul 11 '11 at 19:13

AFAIK there's no "compact" way of doing this...

c(a*(b*c*|c*b*)|b*(a*c*|c*a*)|c*(a*b*|b*a*))t
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.