美文网首页
python去除所有html标签的方法

python去除所有html标签的方法

作者: 还是那个没头脑 | 来源:发表于2021-05-25 17:31 被阅读0次
    import re
    with open('./sample_x.txt', 'r') as x:
        content_x = x.read()
    
        pre = re.compile(r'<[^>]+>',re.S)
        str = pre.sub('',content_x)
        print(str)
    

    相关文章

      网友评论

          本文标题:python去除所有html标签的方法

          本文链接:https://www.haomeiwen.com/subject/shjcsltx.html