當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python BeautifulSoup find_next方法用法及代碼示例


Beautiful Soup 的 find_next(~) 方法返回文檔中當前標簽之後的第一個標簽。此方法采用與 find(~) 完全相同的參數,我們在此處詳細記錄了這些參數。

例子

基本用法

考慮以下 HTML 文檔:

my_html = """
    <p id="alex">Alex</p>
    <p>Bob</p>
    <p id="cathy">Cathy</p>
"""
soup = BeautifulSoup(my_html, "html.parser")

要查找 Alex 標簽之後的所有標簽:

p = soup.find(id="alex")
p.find_next()



<p>Bob</p>

要查找 Alex 標簽後帶有 id="cathy" 的下一個標簽:

p = soup.find(id="alex")
p.find_next(id="cathy")



<p id="cathy">Cathy</p>

父級不共享的情況

一個常見的混淆來源是當我們有以下 HTML 文檔時:

my_html = """
   <div>
      <p id="alex">Alex</p>
   </div>
   <p>Bob</p>
"""
soup = BeautifulSoup(my_html, "html.parser")

在這裏,Bob 的標簽與 Alex 的標簽不共享同一父級。在 Alex 的標簽上調用 find_next(~) 會產生:

p = soup.find(id="alex")
p.find_next()



<p>Bob</p>

請注意 find_next(~) 如何返回 HTML 文檔中當前標記之後的標記。

相關用法


注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 BeautifulSoup | find_next method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。