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

Quick regular expression question.
I'm trying to capture multiple instances of a capture group in python (don't think it's python specific), but the subsequent captures seems to overwrite the previous.

In this over-simplified example, I'm essentially trying to split a string:

x = 'abcdef'
r = re.compile('(\w){6}')
m = r.match(x)
m.groups()     # = ('f',) ?!?
I want to get ('a', 'b', 'c', 'd', 'e', 'f'), but because regex overwrites subsequent captures, I get ('f',)

Is this how regex is supposed to behave? Is there a way to do what I want without having to repeat the syntax six times?

Thanks in advance!
Andrew

share|improve this question
1  
I dont think so. There are re.findall and re.split for these problems. – Jochen Ritzel Apr 8 '11 at 17:05
possible duplicate of Python regex multiple groups – outis Dec 28 '11 at 2:57

3 Answers

up vote 7 down vote accepted

You can't use groups for this, I'm afraid. Each group can match only once, I believe all regexes work this way. A possible solution is to try to use findall() or similar.

r=re.compile(r'\w')
r.findall(x)
# 'a', 'b', 'c', 'd', 'e', 'f'
share|improve this answer
1  
bawk! kicks can Why can't it do exactly what I want how I want! --Thanks! Andrew – Andrew Klofas Apr 8 '11 at 17:57
I have been looking for the command while trawling through re.search re.match and the returned re.MatchObject – Sevenearths Jun 10 '12 at 16:11

To find all matches in a given string use re.findall(regex, string). Also, if you want to obtain every letter here, your regex should be either '(\w){1}' or just '(\w)'.

See:

r = re.compile('(\w)')
l = re.findall(r, x)

l == ['a', 'b', 'c', 'd', 'e', 'f']
share|improve this answer

I suppose your question is a simplified presentation of your need.

Then, I take an exemple a little more complex:

import re

pat = re.compile('[UI][bd][ae]')

ch = 'UbaUdeIbaIbeIdaIdeUdeUdaUdeUbeIda'

print [mat.group() for mat in pat.finditer(ch)]

result

['Uba', 'Ude', 'Iba', 'Ibe', 'Ida', 'Ide', 'Ude', 'Uda', 'Ude', 'Ube', 'Ida']
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.