在 Beautiful Soup 中,标签的 find_next_sibling()
方法返回同一父元素下的下一个元素。
例子
考虑以下 HTML 文档:
my_html = """
<div>
<p>Alex</p>
<p>Bob</p>
</div>
"""
soup = BeautifulSoup(my_html)
让我们获取 <p>Alex</p>
的 next_sibling
:
p_alex = soup.find("p")
p_alex.find_next_sibling()
<p>Bob</p>
如果下一个节点不存在,则返回None
:
p_alex = soup.find("p")
p_alex.find_next_sibling().find_next_sibling()
None
相关用法
- Python BeautifulSoup find_next方法用法及代码示例
- 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_sibling method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。