mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
5 lines
118 B
Python
5 lines
118 B
Python
import re
|
|
|
|
re.compile(r'(?P<first>\w+) (?P<second>\w+)') #$ group=0:14 group=15:30
|
|
re.compile(r'([)(])') #$ group=0:6
|