Beautiful Soup 的 replace_with(~)
方法用提供的標簽或字符串替換元素中的標簽或字符串。
例子
考慮以下 HTML 文檔:
my_html = """
<p>Alice</p>
"""
soup = BeautifulSoup(my_html)
要將文本 "Alice"
替換為 "Bob"
:
p_tag = soup.find("p")
p_tag.string.replace_with("Bob")
p_tag
<p>Bob</p>
在這裏,我們利用所有 Tag
對象可用的 string
屬性。
相關用法
- Python string replace()用法及代碼示例
- Python numpy string replace()用法及代碼示例
- Python repr方法用法及代碼示例
- Python repr()用法及代碼示例
- Python NumPy repeat方法用法及代碼示例
- Python reprlib.recursive_repr用法及代碼示例
- Python numpy matrix repmat()用法及代碼示例
- Python Numpy recarray.tostring()用法及代碼示例
- Python reduce()用法及代碼示例
- Python response.status_code用法及代碼示例
- Python Numpy recarray.tobytes()用法及代碼示例
- Python Numpy recarray.min()用法及代碼示例
- Python response.request用法及代碼示例
- Python Numpy recarray.cumprod()用法及代碼示例
- Python re.compile用法及代碼示例
- Python NumPy remainder方法用法及代碼示例
- Python Django re_path用法及代碼示例
- Python response.elapsed用法及代碼示例
- Python response.cookies用法及代碼示例
- Python response.ok用法及代碼示例
- Python Numpy recarray.argmin()用法及代碼示例
- Python NumPy resize方法用法及代碼示例
- Python Numpy recarray.cumsum()用法及代碼示例
- Python re.fullmatch()用法及代碼示例
- Python Django require_http_methods用法及代碼示例
注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 BeautifulSoup | replace_with method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。