strings
屬性返回元素的內部文本。與 string
屬性不同,strings
處理元素包含多個子元素的情況。
例子
考慮以下 HTML 文檔:
my_html = """
<div>
<p>I like tea.</p>
<p>I like soup.</p>
</div>
"""
soup = BeautifulSoup(my_html)
要獲取 div
的內部文本:
for string in soup.find("div").strings:
print(string)
I like tea.
I like soup.
注意我們最後是如何得到一大堆空格的。要刪除這些尷尬的空白區域,請使用 stripped_strings
屬性:
for string in soup.find("div").stripped_strings:
print(string)
I like tea.
I like soup.
stripped_strings
屬性會忽略僅包含空格的行,並且還會刪除前導空格和尾隨空格。
相關用法
- Python BeautifulSoup Tag string屬性用法及代碼示例
- Python BeautifulSoup Tag stripped_strings屬性用法及代碼示例
- Python BeautifulSoup Tag contents屬性用法及代碼示例
- Python BeautifulSoup Tag decompose方法用法及代碼示例
- Python BeautifulSoup Tag children屬性用法及代碼示例
- Python BeautifulSoup Tag get_text方法用法及代碼示例
- Python BeautifulSoup Tag clear方法用法及代碼示例
- Python BeautifulSoup Tag descendants屬性用法及代碼示例
- Python Tableau TableauAuth用法及代碼示例
- Python Django Tan用法及代碼示例
- Python Tableau TaskItem用法及代碼示例
- Python Thread join()用法及代碼示例
- Python Django TodayArchiveView用法及代碼示例
- Python Tensorflow asin()用法及代碼示例
- Python Django TransactionNow用法及代碼示例
- Python Thread run()用法及代碼示例
- Python TextBlob.correct()用法及代碼示例
- Python Tuple len()用法及代碼示例
- Python Tensorflow math.accumulate_n()用法及代碼示例
- Python Tensorflow cosh()用法及代碼示例
- Python Pandas Timestamp構造函數用法及代碼示例
- Python Django TransactionTestCase.reset_sequences用法及代碼示例
- Python Tuple min()用法及代碼示例
- Python Thread setName()用法及代碼示例
- Python TextCalendar prmonth()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 BeautifulSoup Tag | strings property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。