Python Regex Use - How to Get Positions of Matches - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:07:02Zhttp://stackoverflow.com/feeds/question/250271http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches1Python Regex Use - How to Get Positions of MatchesGreg2008-10-30T14:04:33Z2008-10-30T14:26:38Z
<p>Maybe I'm overlooking something in the Python re library but how can I get the start and end positions of for all matches of my pattern matches in a string?</p>
<p>For example for pattern r'[a-z]' on string 'a1b2c3d4' I'd want to get the positions where it finds each letter. (ideally I'd like to get the text of the match back too).</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches/250278#2502781Answer by EBGreen for Python Regex Use - How to Get Positions of MatchesEBGreen2008-10-30T14:08:28Z2008-10-30T14:08:28Z<p>See if this helps <a href="http://www.python.org/doc/2.5.2/lib/match-objects.html" rel="nofollow">Match Objects</a></p>
http://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches/250303#2503035Answer by Peter Hoffmann for Python Regex Use - How to Get Positions of MatchesPeter Hoffmann2008-10-30T14:15:39Z2008-10-30T14:15:39Z<pre><code>import re
p = re.compile("[a-z]")
for m in p.finditer('a1b2c3d4'):
print m.start(), m.group()
</code></pre>
http://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches/250306#2503064Answer by kanja for Python Regex Use - How to Get Positions of Matcheskanja2008-10-30T14:16:02Z2008-10-30T14:26:38Z<p>Taken from </p>
<p><a href="http://www.amk.ca/python/howto/regex/" rel="nofollow">http://www.amk.ca/python/howto/regex/</a></p>
<p>span() returns both start and end indexes in a single tuple. Since the match method only checks if the RE matches at the start of a string, start() will always be zero. However, the search method of RegexObject instances scans through the string, so the match may not start at zero in that case.</p>
<pre><code>>>> p = re.compile('[a-z]+')
>>> print p.match('::: message')
None
>>> m = p.search('::: message') ; print m
<re.MatchObject instance at 80c9650>
>>> m.group()
'message'
>>> m.span()
(4, 11)
</code></pre>
<p>Combine that with:</p>
<p>In Python 2.2, the finditer() method is also available, returning a sequence of MatchObject instances as an iterator.</p>
<pre><code>>>> p = re.compile( ... )
>>> iterator = p.finditer('12 drummers drumming, 11 ... 10 ...')
>>> iterator
<callable-iterator object at 0x401833ac>
>>> for match in iterator:
... print match.span()
...
(0, 2)
(22, 24)
(29, 31)
</code></pre>
<p>you should be able to do something on the order of</p>
<pre><code>for match in re.finditer(r'[a-z]', 'a1b2c3d4'):
print match.span()
</code></pre>