Python清除常见的网页空格格式
Posted 鸟-叔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python清除常见的网页空格格式相关的知识,希望对你有一定的参考价值。
def clean(string):
pattern = re.compile(r‘<[^>]+>‘, re.S)
string = pattern.sub(‘‘, string)
string = string.replace(‘ ‘, ‘ ‘).replace(‘ ‘, ‘ ‘).replace(‘ ‘, ‘ ‘).replace(‘ ‘, ‘ ‘).replace(" ",‘‘)
string = string.strip()
return string
以上是关于Python清除常见的网页空格格式的主要内容,如果未能解决你的问题,请参考以下文章