gpt4 book ai didi

python - BeautifulSoup 中是否有 InnerText 等价物?

转载 作者:IT老高 更新时间:2023-10-28 22:04:16 25 4
gpt4 key购买 nike

使用下面的代码:

soup = BeautifulSoup(page.read(), fromEncoding="utf-8")
result = soup.find('div', {'class' :'flagPageTitle'})

我得到以下 html:

<div id="ctl00_ContentPlaceHolder1_Item65404" class="flagPageTitle" style=" ">
<span></span><p>Some text here</p>
</div>

我怎样才能得到 Some text here 没有任何标签? BeautifulSoup 中是否有 InnerText 等价物?

最佳答案

你只需要:

result = soup.find('div', {'class' :'flagPageTitle'}).text

关于python - BeautifulSoup 中是否有 InnerText 等价物?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8993854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com