如何在每个b标签之前放置定界符-Beautifulsoup

时间:2018-10-26 10:30:05

标签: python html beautifulsoup

所以我有这段代码:

print([x.text.replace('\n', '').encode('windows-1252', errors='replace') for x 
in soup.find_all(['b','p'])])

我想在每个<b>之前只添加一些分隔符,例如“ **”或其他任何符号。

谢谢

1 个答案:

答案 0 :(得分:1)

尝试一下:

newstring = string.replace('<b>', '<b>**')

我希望它能起作用!