如何将原始字符串转换为`bs4.element.Tag`

时间:2019-07-12 04:48:50

标签: python parsing beautifulsoup

如何转换原始字符串:`

string = "<p color="#000000" font_size="11">Sample Text</p>"`

变成漂亮的汤标签? bs4.element.Tag

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以在字符串上使用BeautifulSoup:

string = '<p color="000000" font_size=11>Sample Text</p>'

soup = BeautifulSoup(string)

In: soup.find('p')
Out: <p color="000000" font_size="11">Sample Text</p>

In: type(soup.find('p'))
Out: bs4.element.Tag