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 文檔中當前標記之後的標記。
相關用法
- Python BeautifulSoup find_next_sibling方法用法及代碼示例
- Python BeautifulSoup find_all_next方法用法及代碼示例
- Python BeautifulSoup find_previous_sibling方法用法及代碼示例
- Python BeautifulSoup find_parent方法用法及代碼示例
- Python BeautifulSoup find_all方法用法及代碼示例
- Python BeautifulSoup find_parents方法用法及代碼示例
- Python string find()用法及代碼示例
- Python BeautifulSoup find方法用法及代碼示例
- Python NumPy finfo方法用法及代碼示例
- Python calendar firstweekday()用法及代碼示例
- Python NumPy fill_diagonal方法用法及代碼示例
- Python filecmp.cmpfiles()用法及代碼示例
- Python fileinput.filelineno()用法及代碼示例
- Python fileinput.lineno()用法及代碼示例
- Python fileinput.input用法及代碼示例
- Python NumPy fix方法用法及代碼示例
- Python fileinput.isfirstline()用法及代碼示例
- Python fileinput.input()用法及代碼示例
- Python fileinput.filename()用法及代碼示例
- Python filter()用法及代碼示例
- Python NumPy fliplr方法用法及代碼示例
- Python dict fromkeys()用法及代碼示例
- Python frexp()用法及代碼示例
- Python functools.wraps用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 BeautifulSoup | find_next method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。