Python Regex Use - How to Get Positions of Matches - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:07:02Z http://stackoverflow.com/feeds/question/250271 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches 1 Python Regex Use - How to Get Positions of Matches Greg 2008-10-30T14:04:33Z 2008-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#250278 1 Answer by EBGreen for Python Regex Use - How to Get Positions of Matches EBGreen 2008-10-30T14:08:28Z 2008-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#250303 5 Answer by Peter Hoffmann for Python Regex Use - How to Get Positions of Matches Peter Hoffmann 2008-10-30T14:15:39Z 2008-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#250306 4 Answer by kanja for Python Regex Use - How to Get Positions of Matches kanja 2008-10-30T14:16:02Z 2008-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>&gt;&gt;&gt; p = re.compile('[a-z]+') &gt;&gt;&gt; print p.match('::: message') None &gt;&gt;&gt; m = p.search('::: message') ; print m &lt;re.MatchObject instance at 80c9650&gt; &gt;&gt;&gt; m.group() 'message' &gt;&gt;&gt; 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>&gt;&gt;&gt; p = re.compile( ... ) &gt;&gt;&gt; iterator = p.finditer('12 drummers drumming, 11 ... 10 ...') &gt;&gt;&gt; iterator &lt;callable-iterator object at 0x401833ac&gt; &gt;&gt;&gt; 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>