I\'m writing a python regex that looks through a text document for quoted strings (quotes of airline pilots recorded from blackboxes). I started by trying to write a regex with
You need to catch everything with an extra pair of parentheses.
re.findall('(("|\').*?\\2)', page)