如何使用Python正则表达式从HTML链接中提取URL?

以下代码使用python regex从html链接中提取网址

示例

import re
s = '''http://www.santa.com'''
match = re.search(r'href=[\'"]?([^\'" >]+)', s)
if match:
    print match.group(0)

输出结果

这给出了输出

href="http://www.santa.com"