Comment supprimer les balises html en python : 1. Méthode "pattern.sub('',html)" ; 2. Méthode "BeautifulSoup(html,'html.parser')" ; méthode xpath" ('string(.)')".
L'environnement d'exploitation de cet article : système Windows 7, python version 3.6.4, ordinateur DELL G3.
Plusieurs façons de supprimer les balises html en python
import re from bs4 import BeautifulSoup from lxml import etree html = '你好
哈哈大家好' # 方法一 pattern = re.compile(r'<[^>]+>',re.S) result = pattern.sub('', html) print(result)
# 方法二 soup = BeautifulSoup(html,'html.parser') print(soup.get_text()) # 方法三 response = etree.HTML(text=html) # print(dir(response)) print(response.xpath('string(.)')) # 你好哈哈大家好 # 你好哈哈大家好 # 你好哈哈大家好
[Recommandé :Tutoriel vidéo Python]
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!