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

a + (ab or cd ) + g is my expression. How can I write a regex in Python to match these?

share|improve this question
4  
I don't understand the expression you want. Suggest you extend the post to give a few example lines of text, some that match what you want some that don't. Then we can clearly see what you are trying to match. – djna Sep 9 '10 at 7:01
Could you be a bit more specific? Are you just looking to concatenate a and ab or cd and e once or do you need this in a recursive fashion? – typoknig Sep 9 '10 at 7:02

1 Answer

To search this regex in a string, say

re.search("a\\+((ab)|(cd))\\+g", your_string)

To extract matches, use re.findall etc. No need to copy&paste the docs here. :)

EDIT: Updated after OP changed the regex.

If you want it to match whitespace in between, things get pretty ugly ...

re.search("a\W*\\+\W*((ab)|(cd))\W*\\+\W*g", your_string)
share|improve this answer
Just to make sure it's clear, the + has a particular meaning in regular expressions. So if you want to literally match the + character itself, you need to escape it: "(a\\+b)|(cd\\+e)" – MatrixFrog Sep 9 '10 at 7:07
Of course. I was assuming the OP had that in mind. – Johannes Charra Sep 9 '10 at 7:08
@MatrixFrog: Ok ... after his last edit I understand he was looking for literal "+" indeed. – Johannes Charra Sep 9 '10 at 7:25
1  
Can't this be re-written as re.search(r"a\W*\+\W*(ab|cd)\W*\+\W*g", your_string)? Use a raw string so you don't ahve to escape everything twice, and you don't need the extra pair of () around the |. – Mark Sep 9 '10 at 7:49
@Mark: Good point, thanks. – Johannes Charra Sep 9 '10 at 8:13

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.