提取元素并插入空格
我在 python 中使用 BeautifulSoup 解析 html
我不知道如何在提取文本元素时插入空格
这是代码:
import BeautifulSoup
soup=BeautifulSoup.BeautifulSoup('<html>this<b>is</b>example</html>')
print soup.text
然后输出是
这是示例
但我想在其中插入一个空格,例如
是的,就是例子
如何插入空格?
im parsing html using BeautifulSoup in python
i dont know how to insert a space when extracting text element
this is the code:
import BeautifulSoup
soup=BeautifulSoup.BeautifulSoup('<html>this<b>is</b>example</html>')
print soup.text
then output is
thisisexample
but i want to insert a space to this like
yes is example
how do i insert a space?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
getText
代替:Use
getText
instead:如果您的 Beautifulsoup 版本没有
getText
那么您可以这样做:If your version of Beautifulsoup does not have
getText
then you could do this:人们可能还想与 strip 参数一起使用
One may want to use also with strip argument