Beautiful Soup 的 insert_after(~)
方法將指定的標記或字符串直接插入到解析樹中的特定元素之後。
參數
1. string
或 Tag
| string
或 Tag
要插入到解析樹中的字符串或標簽。
例子
考慮以下 HTML 文檔:
my_html = """
<div>
<p>Alex</p>
<p id="bob">Bob</p>
<p>Cathy</p>
</div>
"""
soup = BeautifulSoup(my_html)
要在包含 Alex 的標簽後麵插入字符串:
div_tag = soup.find("div")
alex_tag = div_tag.find("p")
alex_tag.insert_after("INSERTEDTEXT")
print(div_tag)
<div>
<p>Alex</p>INSERTEDTEXT
<p id="bob">Bob</p>
<p>Cathy</p>
</div>
要在包含 Alex 的標簽後麵插入新標簽:
div_tag = soup.find("div")
alex_tag = div_tag.find("p")
# Create a new tag and initialise it's content
new_tag = soup.new_tag("p")
new_tag.string = "Eric"
alex_tag.insert_after(new_tag)
print(div_tag)
<div>
<p>Alex</p><p>Eric</p>
<p id="bob">Bob</p>
<p>Cathy</p>
</div>
相關用法
- Python BeautifulSoup insert_before方法用法及代碼示例
- Python BeautifulSoup insert方法用法及代碼示例
- Python NumPy insert方法用法及代碼示例
- Python inspect.Parameter.replace用法及代碼示例
- Python inspect.Parameter.kind用法及代碼示例
- Python inspect.Signature.from_callable用法及代碼示例
- Python inspect.isasyncgenfunction用法及代碼示例
- Python inspect.isawaitable用法及代碼示例
- Python inspect.BoundArguments.apply_defaults用法及代碼示例
- Python inspect.BoundArguments用法及代碼示例
- Python inspect.Parameter.kind.description用法及代碼示例
- Python inspect.formatargspec用法及代碼示例
- Python inspect.Signature.replace用法及代碼示例
- Python inspect.signature用法及代碼示例
- Python inspect.getcallargs用法及代碼示例
- Python scipy integrate.trapz用法及代碼示例
- Python int轉exponential用法及代碼示例
- Python integer轉string用法及代碼示例
- Python Django index用法及代碼示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代碼示例
- Python scipy interpolate.CubicSpline.solve用法及代碼示例
- Python int.from_bytes用法及代碼示例
- Python scipy integrate.cumtrapz用法及代碼示例
- Python int構造函數用法及代碼示例
- Python scipy interpolate.PchipInterpolator.solve用法及代碼示例
注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 BeautifulSoup | insert_after method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。