I want a regular expression to extract the title from a HTML page. Currently I have this:
title = re.search(\'.*\', html, re.IGNOR
Try:
title = re.search('(.*)', html, re.IGNORECASE).group(1)