正则表达式用Python从HTML中的href属性中提取URL

正则表达式用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']

谢谢!


侃侃无极
浏览 3883回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP