python 不使用正则表达式提取HTML标签属性
有没有办法使用urlib
、urllib2
或BeautifulSoup
来提取HTML标签属性?
例如:
<a href="xyz" title="xyz">xyz</a>
gets href=xyz, title=xyz
还有另一个线程讨论使用 正则表达式
谢谢
Is there any way using urlib
, urllib2
or BeautifulSoup
to extract HTML tag attributes?
for example:
<a href="xyz" title="xyz">xyz</a>
gets href=xyz, title=xyz
There is another thread talking about using regular expressions
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 BeautifulSoup 来解析 HTML,对于每个
标签,使用
tag.attrs
来读取属性:You could use BeautifulSoup to parse the HTML, and for each
<a>
tag, usetag.attrs
to read the attributes:为什么不尝试使用 HTMLParser 模块呢?
像这样的东西:
why don't you try with the HTMLParser module?
Something like this: