python中BeautifulSoup庫中find函數

來源:互聯網
上載者:User

標籤:

http://www.crummy.com/software/BeautifulSoup/bs3/documentation.zh.html#contents

簡單的用法: find(name, attrs, recursive, text, **kwargs)

好了,我們現在看看其他的搜尋方法。他們都是有和 findAll 幾乎一樣的參數。

find方法是最接近findAll的函數, 只是它並不會獲得所有的匹配對象,它僅僅返回找到第一個可匹配對象。 也就是說,它相當於limit參數為1的結果集。 以上面的 文檔為例:

soup.findAll(‘p‘, limit=1)#[<p id="firstpara" align="center">This is paragraph <b>one</b>.</p>]soup.find(‘p‘, limit=1)#<p id="firstpara" align="center">This is paragraph <b>one</b>.</p>soup.find(‘nosuchtag‘, limit=1) == None#True
 通常,當你看到一個搜尋方法的名字由複數構成 (如 findAllfindNextSiblings)時, 這個方法就會存在 limit參數,並返回一個list的結果。但你 看到的方法不是複數形式(如 findfindNextSibling)時, 你就可以知道這函數沒有limit參數且傳回值是單一的結果。  這裡面常用的有 find(‘div‘, {‘class‘:‘nums‘}) 這種找法,要直接獲得內容在找到的詞條用 .text() 即可獲得內容

python中BeautifulSoup庫中find函數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.