How to matches all occurrences and indexes of a pattern in a string using regex in Python

2 Answers

0 votes
import re

s = "oxiply php axesly c++ foxly python java"

for m in re.finditer(r"\w+ly", s):
    print('%02d-%02d: %s' % (m.start(), m.end(), m.group(0)))

 
 
   
'''
run:
   
00-06: oxiply
11-17: axesly
22-27: foxly
   
'''

 



answered Aug 1, 2019 by avibootz
0 votes
import re

s = "oxlip php axles c++ foxly python java"

for m in re.finditer(r"\w+xl", s):
    print('%02d-%02d: %s' % (m.start(), m.end(), m.group(0)))

 
 
   
'''
run:
   
00-03: oxl
10-13: axl
20-24: foxl
   
'''

 



answered Aug 1, 2019 by avibootz
...