你是一个高级程序员需要回答我系列问题请问在beautiful soup中哪个方法可以获取匹配元素的字符
串内容?
在beautiful soup中,可以使用.string方法获取匹配元素的字符串内容。例如:
from bs4 import BeautifulSoup
html = '<p>Hello, world!</p>'
soup = BeautifulSoup(html, 'html.parser')
p_tag = soup.find('p')
print(p_tag.string) # 输出:Hello, world!
原文地址: http://www.cveoy.top/t/topic/hbMA 著作权归作者所有。请勿转载和采集!