Python清除常见的网页空格格式
2021-02-10 10:17
阅读:588
标签:strong att python strip strip() ret mil str replace Python清除常见的网页空格格式 标签:strong att python strip strip() ret mil str replace 原文地址:https://www.cnblogs.com/yp19970/p/12743741.htmldef clean(string):
pattern = re.compile(r‘]+>‘, re.S)
string = pattern.sub(‘‘, string)
string = string.replace(‘\n‘, ‘ ‘).replace(‘\r‘, ‘ ‘).replace(‘ ‘, ‘ ‘).replace(‘\t‘, ‘ ‘).replace(" ",‘‘)
string = string.strip()
return string
上一篇:排序算法总结
评论
亲,登录后才可以留言!