正则表达式用Python从HTML中的href属性中提取URL
考虑如下字符串:
string = "<p>Hello World</p><a href="http://example.com">More Examples</a><a href="http://example2.com">Even More Examples</a>"
我怎么能用Python在锚标记的href中提取网址?就像是:
>>> url = getURLs(string)>>> url['http://example.com', 'http://example2.com']
谢谢!