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