Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.61 KB | None | 0 0
  1. import re
  2.  
  3. regex = r"\w*\s?"
  4.  
  5. test_str = "abc adb  as"
  6.  
  7. matches = re.finditer(regex, test_str, re.MULTILINE)
  8.  
  9. for matchNum, match in enumerate(matches, start=1):
  10.    
  11.     print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group()))
  12.    
  13.     for groupNum in range(0, len(match.groups())):
  14.         groupNum = groupNum + 1
  15.        
  16.         print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement