python去除html标签,python去除标签,python去除html


python去除html标签,自己写的,若有不足请指正:```python

! /usr/bin/env python

coding=utf-8

blueel 2013-01-19

from HTMLParser import HTMLParser

class MLStripper(HTMLParser): def init(self): self.reset() self.fed = [] def handle_data(self, d): self.fed.append(d) def get_data(self): return ''.join(self.fed)

def strip_tags(html): s = MLStripper() s.feed(html) return s.get_data()```

评论关闭