I\'d like to use a variable inside a regex, how can I do this in Python?
variable
regex
Python
TEXTO = sys.argv[1] if re.search(r\"\\b(?=\\
rx = r'\b(?<=\w){0}\b(?!\w)'.format(TEXTO)