Files
codeql/python/ql/src/Expressions/Regex/BackspaceEscape.py
2018-11-19 15:10:42 +00:00

6 lines
104 B
Python

import re
matcher = re.compile(r"\b[\t\b]")
def match_data(data):
return bool(matcher.match(data))