我是靠谱客的博主 积极鸭子,最近开发中收集的这篇文章主要介绍基于Beautiful Soup 4.2.0文档的学习记录(3)——get_text()、get()get_text()get(),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

get_text()

如果只想得到tag中包含的文本内容,那么可以用 get_text() 方法,这个方法获取到tag中包含的所有文版内容包括子孙tag中的内容,并将结果作为Unicode字符串返回:

markup = '<a href="http://example.com/">nI linked to <i>example.com</i>n</a>'
soup = BeautifulSoup(markup)
soup.get_text()
u'nI linked to example.comn'
soup.i.get_text()
u'example.com'

可以通过参数指定tag的文本内容的分隔符:

# soup.get_text("|")
u'nI linked to |example.com|n'

还可以去除获得文本内容的前后空白:

# soup.get_text("|", strip=True)
u'I linked to|example.com'

或者使用 .stripped_strings 生成器,获得文本列表后手动处理列表:

[text for text in soup.stripped_strings]
# [u'I linked to', u'example.com']

get()

tag.get(attr),可以得到tag标签中attr属性的value

for link in soup.find_all('a'):
print(link.get('href'))
# http://example.com/elsie
# http://example.com/lacie
# http://example.com/tillie

最后

以上就是积极鸭子为你收集整理的基于Beautiful Soup 4.2.0文档的学习记录(3)——get_text()、get()get_text()get()的全部内容,希望文章能够帮你解决基于Beautiful Soup 4.2.0文档的学习记录(3)——get_text()、get()get_text()get()所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部