@elibrarian
If the 2 ^[...] are near, the search find them as one
I solve it changing the
Code:
found = re.search(r'\^\[.*\]',html)
to
Code:
found = re.search(r'\^\[.*?\]',html)
EDIT: Doesn't work right. It delete the text till the last ] in those that are near
I try to figure out why