Matching Object Methods
Return matched string
- Syntax: string = match_object.group()
Return starting position of the match
- Syntax: m = match_object.start()
Return ending position of the match
- Syntax: n = match_object.end()
Return a tuple with start and end positions
- Syntax: m, n = match_object.span()
-