1

我正在使用 Beautiful Soup 4 来刮一页。有一段我不想要的文字:

<p class="MsoNormal" style="text-align: center"><b>
                            <span lang="EN-US" style="font-family: Arial; color: blue">
                            <font size="4">1 </font></span>
                            <span lang="AR-SA" dir="RTL" style="font-family: Arial; color: blue">
                            <font size="4">&#1600;</font></span><span lang="EN-US" style="font-family: Arial; color: blue"><font size="4"> 
                            с&#1199;р&#1241; фати&#1211;&#1241;</font></span></b></p>

它的独特之处在于它有一个标签。我已经使用 findall() 来获取所有

标签。所以现在我有一个 for 循环,如:

for el in doc.findall('p'):
    if el.hasChildTag('b'):
        break;

不幸的是 bs4 没有“hasChildTag”功能

4

2 回答 2

4

也应该可以使用 css 选择器。

http://www.crummy.com/software/BeautifulSoup/bs4/doc/#css-selectors

soup.select("p b")
于 2013-01-13T19:17:51.020 回答
3
for elem in soup.findAll('p'):
    if elem.findChildren('b'):
        continue #skip the elem with "b", and continue with the loop
    #do stuff with the elem
于 2013-01-13T19:16:29.933 回答